diff --git a/Dockerfile b/Dockerfile index 3e97213..b34df32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:2.7 +MAINTAINER Julien Peloton + WORKDIR /usr/src/app ## Install vim, MPI, and fortran compiler diff --git a/README.rst b/README.rst index b553db3..7be9b7e 100644 --- a/README.rst +++ b/README.rst @@ -64,7 +64,21 @@ Then run the test suite and the coverage: It should print the actual coverage of the test suite, and exit with no errors. -Coming soon: dockerfile :-) +Installation using Docker +=============== +Alternatively if you do not want install the package on your computer, +we provide a docker image for s4cmb with always the latest version. Install +docker on your computer, and pull the image: + +:: + + docker pull julienpeloton/s4cmb:latest + +Then create a new container and run an interactive session by just running + +:: + + docker run -i -t julienpeloton/s4cmb:latest bash Quick examples ===============