Skip to content

Commit d5d5084

Browse files
authored
Merge pull request #930 from arnavs/master
Bump Julia to 1.2.0
2 parents ef1e508 + 933412e commit d5d5084

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datascience-notebook/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ RUN apt-get update && \
2323
# install Julia packages in /opt/julia instead of $HOME
2424
ENV JULIA_DEPOT_PATH=/opt/julia
2525
ENV JULIA_PKGDIR=/opt/julia
26-
ENV JULIA_VERSION=1.1.1
26+
ENV JULIA_VERSION=1.2.0
2727

2828
RUN mkdir /opt/julia-${JULIA_VERSION} && \
2929
cd /tmp && \
3030
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 "f0a83a139a89a2ccf2316814e5ee1c0c809fca02cbaf4baf3c1fd8eb71594f06 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
31+
echo "926ced5dec5d726ed0d2919e849ff084a320882fb67ab048385849f9483afc47 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
3232
tar xzf julia-${JULIA_VERSION}-linux-x86_64.tar.gz -C /opt/julia-${JULIA_VERSION} --strip-components=1 && \
3333
rm /tmp/julia-${JULIA_VERSION}-linux-x86_64.tar.gz
3434
RUN ln -fs /opt/julia-*/bin/julia /usr/local/bin/julia
@@ -79,7 +79,7 @@ RUN conda install --quiet --yes \
7979
# taking effect properly on the .local folder in the jovyan home dir.
8080
RUN julia -e 'import Pkg; Pkg.update()' && \
8181
(test $TEST_ONLY_BUILD || julia -e 'import Pkg; Pkg.add("HDF5")') && \
82-
julia -e "using Pkg; pkg\"add Gadfly RDatasets IJulia InstantiateFromURL\"; pkg\"precompile\"" && \
82+
julia -e "using Pkg; pkg\"add IJulia\"; pkg\"precompile\"" && \
8383
# move kernelspec out of home \
8484
mv $HOME/.local/share/jupyter/kernels/julia* $CONDA_DIR/share/jupyter/kernels/ && \
8585
chmod -R go+rx $CONDA_DIR/share/jupyter && \

0 commit comments

Comments
 (0)