Skip to content

Instantly share code, notes, and snippets.

@ysimillides
Last active March 4, 2020 18:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ysimillides/9f7b74c9faf79734024ab174465eb53b to your computer and use it in GitHub Desktop.
Save ysimillides/9f7b74c9faf79734024ab174465eb53b to your computer and use it in GitHub Desktop.
FROM quay.io/fenicsproject/stable:current
LABEL maintainer=" Yiannis Simillides <yiannis.simillides@gmail.com>"
RUN apt-get update -y && apt-get install -y make gcc g++ bzip2 hdf5-tools unzip gfortran curl
WORKDIR /
RUN mkdir -p /opt/julia-0.6.3 && \
curl -s -L https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6.3-linux-x86_64.tar.gz | tar -C /opt/julia-0.6.3 -x -z --strip-components=1 -f -
#link to python3
ENV PYTHON /usr/bin/python3
ENV JUPYTER /usr/local/bin/jupyter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment