Skip to content

Commit dbe86a2

Browse files
authored
chore: properly install julia (#191)
1 parent 1ba04f5 commit dbe86a2

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.gitpod.dockerfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
FROM gitpod/workspace-full-vnc
1+
FROM gitpod/workspace-base:2023-10-04-18-52-46
22

3-
RUN sudo apt-get update \
4-
&& sudo apt-get install julia -y
3+
ENV JULIA_TMP="julia_tmp.tar.gz"
4+
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

Comments
 (0)