From bd3e41a5870b0fb0e85b249e599588595ba6c09a Mon Sep 17 00:00:00 2001 From: zontreck Date: Mon, 22 Jul 2024 21:53:33 -0700 Subject: [PATCH] Move chmod command, fix curl command --- LinuxGeneralCompiler/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 581f135..06d2848 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -103,9 +103,9 @@ ADD ./env /env.bash RUN source /env.bash # Install AppImage Builder -RUN curl -sO appimage-builder.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v${APPIMAGE_BUILDER_VER}/appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage +RUN curl -sO https://github.com/AppImageCrafters/appimage-builder/releases/download/v${APPIMAGE_BUILDER_VER}/appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage -RUN chmod +x appimage-builder.AppImage RUN mv appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage /bin/appimage-builder +RUN chmod +x /bin/appimage-builder ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ]