From 87fbe92b803697edb5a277ffa23336058c6875f3 Mon Sep 17 00:00:00 2001 From: zontreck Date: Mon, 22 Jul 2024 20:12:33 -0700 Subject: [PATCH] Adjust command to use curl --- LinuxGeneralCompiler/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 3c5fa1c..bded4a4 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -103,8 +103,8 @@ ADD ./env /env.bash RUN source /env.bash # Install AppImage Builder -RUN wget -O appimage-builder.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/${APPIMAGE_BUILDER_VER}/appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage +RUN curl -sO appimage-builder.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/${APPIMAGE_BUILDER_VER}/appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage RUN chmod +x appimage-builder.AppImage -RUN mv appimage-builder.AppImage /bin/appimage-builder +RUN mv appimage-builder-${APPIMAGE_BUILDER_VER}-x86_64.AppImage /bin/appimage-builder ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ]