1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
## Docker related files
The docker files are available at https://hub.docker.com/u/pysph/
The `base` sub-directory contains a Dockerfile that is used to make the base
image that can be easily used to test PySPH on both Python-2.7 and Python-3.5.
This is the base image for any other PySPH related docker images.
The base image only contains the necessary packages so as to run *all* the
tests. It therefore include all the dependencies like mpi4py, Zoltan, Mayavi,
and h5py so as to exercise all the tests.
If you update the Dockerfile build a new image using:
$ cd base
$ docker build -t pysph/base:v3 .
Push it to dockerhub (if you have the permissions) and tag it as latest:
$ docker push pysph/base:v3
$ docker tag pysph/base:v3 pysph/base:latest
$ docker push pysph/base:latest
|