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.
julia
1 parent 1ba04f5 commit dbe86a2Copy full SHA for dbe86a2
.gitpod.dockerfile
@@ -1,4 +1,9 @@
1
-FROM gitpod/workspace-full-vnc
+FROM gitpod/workspace-base:2023-10-04-18-52-46
2
3
-RUN sudo apt-get update \
4
- && sudo apt-get install julia -y
+ENV JULIA_TMP="julia_tmp.tar.gz"
+
5
+RUN test ! -e "${JULIA_TMP}" \
6
+ && curl https://julialang-s3.julialang.org/bin/linux/x64/1.9/julia-1.9.3-linux-x86_64.tar.gz -sSf -o "${JULIA_TMP}" \
7
+ && tar zxvf ${JULIA_TMP} \
8
+ && rm ${JULIA_TMP} \
9
+ && echo "export PATH=${HOME}/julia-1.9.3/bin/:\$PATH" >> ~/.bashrc
0 commit comments