Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 5c5810d

Browse files
committed
minor update julia and pass build
1 parent 9249c7d commit 5c5810d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,18 @@ RUN apt-get update && \
1414
apt-get install -y gfortran python && \
1515
apt-get install -y m4 cmake libssl-dev && \
1616
cd /usr/local/src && git clone https://github.com/JuliaLang/julia.git && \
17-
cd julia && git checkout v0.6.0 && \
17+
cd julia && git checkout v0.6.2 && \
1818
# Use generic instruction set; see https://github.com/JuliaLang/julia/pull/6220
1919
# and https://groups.google.com/forum/#!topic/julia-dev/Eqp0GhZWxME
2020
echo "JULIA_CPU_TARGET=core2" > Make.user && \
21+
echo "OPENBLAS_TARGET_ARCH=NEHALEM" > Make.user && \
2122
make -j 4 julia-deps && make -j 4 && make install && \
2223
ln -s /usr/local/src/julia/julia /usr/local/bin/julia
2324

2425
ENV JULIA_PKGDIR /root/.julia/v0.6
2526

2627
RUN julia /tmp/package_installs.jl
27-
28+
2829
# IJulia
2930
RUN apt-get update && apt-get install -y python3-pip python3-dev && pip3 install jupyter && \
3031
julia -e "Pkg.add(\"Nettle\")" && \

0 commit comments

Comments
 (0)