Skip to content

Commit

Permalink
Merge pull request #34 from Moelf/patch-2
Browse files Browse the repository at this point in the history
revert Julia to 1.10.5 due to DEPOT_PATH behavior change
  • Loading branch information
ivukotic authored Oct 15, 2024
2 parents 0ac2cbc + 7a62df1 commit 6e4a5b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ RUN python3.8 -m ipykernel install
# Julia
#############################
ARG JULIA_MAJOR=1
ARG JULIA_MINOR=11
ARG JULIA_PATCH=0
ARG JULIA_MINOR=10
ARG JULIA_PATCH=5
ARG JULIA_VER=$JULIA_MAJOR.$JULIA_MINOR.$JULIA_PATCH
# this is where we install default packages
ENV JULIA_PKGDIR=/opt/julia
Expand All @@ -56,7 +56,7 @@ RUN mkdir $JULIA_PKGDIR
# the build step for IJulia should install Jupyter kernal
RUN export JUPYTER_DATA_DIR=/usr/local/share/jupyter/ && \
export JULIA_LOAD_PATH="$JULIA_PKGDIR:" && \
export JULIA_DEPOT_PATH=":$JULIA_PKGDIR" && \
export JULIA_DEPOT_PATH=$JULIA_PKGDIR && \
julia -e 'using Pkg; Pkg.add("IJulia")' && \
julia -e 'using Pkg; Pkg.precompile()'

Expand Down

0 comments on commit 6e4a5b8

Please sign in to comment.