From 87bca30c0c8827c22b475f7e08a5819417dc8ee7 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 7 Jul 2024 02:45:37 -0700 Subject: [PATCH] Use more direct paths --- LinuxGeneralCompiler/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 0bc8b20..6e0a9f2 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -17,7 +17,7 @@ RUN curl -sO https://ci.zontreck.com/jnlpJars/agent.jar RUN curl -sO https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.22.2-stable.tar.xz -RUN tar -xf /flutter_linux_3.22.2-stable.tar.xz -C / +RUN tar -xf /flutter_linux_3.22.2-stable.tar.xz RUN echo "export PATH=$PATH:/flutter/bin" @@ -30,7 +30,7 @@ RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.d RUN dpkg -i google-chrome-stable_current_amd64.deb -RUN flutter --disable-analytics -RUN flutter doctor +RUN /flutter/bin/flutter --disable-analytics +RUN /flutter/bin/flutter doctor ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ] \ No newline at end of file