Use more direct paths

This commit is contained in:
zontreck 2024-07-07 02:45:37 -07:00
parent 187dc74964
commit 87bca30c0c

View file

@ -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" ]