Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop docker #21

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ubuntu:18.04
MAINTAINER Jan Malec ([email protected])

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
5 changes: 5 additions & 0 deletions Dockerfile/dockerfile-build-instructions.txt
Original file line number Diff line number Diff line change
@@ -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".