File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ RUN apt-get update && \
23
23
# install Julia packages in /opt/julia instead of $HOME
24
24
ENV JULIA_DEPOT_PATH=/opt/julia
25
25
ENV JULIA_PKGDIR=/opt/julia
26
- ENV JULIA_VERSION=1.2.0
26
+ ENV JULIA_VERSION=1.3.1
27
27
28
28
RUN mkdir /opt/julia-${JULIA_VERSION} && \
29
29
cd /tmp && \
30
30
wget -q https://julialang-s3.julialang.org/bin/linux/x64/`echo ${JULIA_VERSION} | cut -d. -f 1,2`/julia-${JULIA_VERSION}-linux-x86_64.tar.gz && \
31
- echo "926ced5dec5d726ed0d2919e849ff084a320882fb67ab048385849f9483afc47 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
31
+ echo "faa707c8343780a6fe5eaf13490355e8190acf8e2c189b9e7ecbddb0fa2643ad *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
32
32
tar xzf julia-${JULIA_VERSION}-linux-x86_64.tar.gz -C /opt/julia-${JULIA_VERSION} --strip-components=1 && \
33
33
rm /tmp/julia-${JULIA_VERSION}-linux-x86_64.tar.gz
34
34
RUN ln -fs /opt/julia-*/bin/julia /usr/local/bin/julia
@@ -79,7 +79,7 @@ RUN conda install --quiet --yes \
79
79
# taking effect properly on the .local folder in the jovyan home dir.
80
80
RUN julia -e 'import Pkg; Pkg.update()' && \
81
81
(test $TEST_ONLY_BUILD || julia -e 'import Pkg; Pkg.add("HDF5")' ) && \
82
- julia -e "using Pkg; pkg\" add IJulia\" ; pkg\" precompile\" " && \
82
+ julia -e "using Pkg; pkg\" add IJulia\" ; pkg\" precompile\" " && \
83
83
# move kernelspec out of home \
84
84
mv $HOME/.local/share/jupyter/kernels/julia* $CONDA_DIR/share/jupyter/kernels/ && \
85
85
chmod -R go+rx $CONDA_DIR/share/jupyter && \
You can’t perform that action at this time.
0 commit comments