From d5556129a6aac1a1f0bc8ffe9c2d47cfb8d3199c Mon Sep 17 00:00:00 2001 From: zontreck Date: Mon, 22 Jul 2024 19:20:43 -0700 Subject: [PATCH] Add AppImage-builder --- LinuxGeneralCompiler/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index bbe1c03..28908d0 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -101,4 +101,8 @@ WORKDIR / ADD ./env /env.bash RUN source /env.bash +# Install AppImage Builder + +RUN apt-get install -y appimage-builder + ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ]