diff --git a/Dockerfile/Dockerfile b/Dockerfile/Dockerfile new file mode 100644 index 00000000..829e8578 --- /dev/null +++ b/Dockerfile/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:18.04 +MAINTAINER Jan Malec (jan.malec@gmail.com) + +RUN apt update +RUN apt install -y gfortran python3 python3-setuptools\ + python3-numpy python3-dev unzip ca-certificates git + +RUN git clone https://github.com/luca-fiorito-11/sandy.git +RUN cd sandy && python3 setup.py install diff --git a/Dockerfile/dockerfile-build-instructions.txt b/Dockerfile/dockerfile-build-instructions.txt new file mode 100644 index 00000000..ca7c4efc --- /dev/null +++ b/Dockerfile/dockerfile-build-instructions.txt @@ -0,0 +1,5 @@ +Run "docker build -t "sandy:develop" . +in the directory with the Dockerfile. + +You can create a container by running +"docker run -it sandy:develop".