We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d432f commit 154d87fCopy full SHA for 154d87f
jenkins/Dockerfile
@@ -11,6 +11,7 @@ RUN apt-get update && \
11
apt-get clean && \
12
rm -rf /var/lib/apt/lists/*
13
14
-ARG JULIA=1.6
15
-RUN curl -s -L https://julialang-s3.julialang.org/bin/linux/x64/${JULIA}/julia-${JULIA}-latest-linux-x86_64.tar.gz | \
16
- tar -C /usr/local -x -z --strip-components=1 -f -
+#ARG JULIA=1.6
+RUN curl -fsSL https://install.julialang.org | sh -s -- --path /usr/local --yes && \
+ juliaup add ${JULIA} && \
17
+ juliaup default ${JULIA}
0 commit comments