File: README.md

package info (click to toggle)
pysph 1.0~b2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,100 kB
  • sloc: python: 58,494; makefile: 212; cpp: 206; sh: 165
file content (23 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (4)
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