Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 631 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 631 Bytes

Demo of how to use conda with docker

See the full commit history to see step by step how to use conda with docker.

Python + Docker: Hello world sample

Go to "python + docker" commit to see the "Hello World" sample that uses the most basic configuration for Python + Docker

To build a Docker image do:

docker build -t my-docker-python .

And to run a docker container from the Docker image created do:

docker run my-docker-python

Python + Conda + Docker: Numpy array sample

Go to "python + conda + docker" commit to see this sample. Again you can use the same commands for build and run a Docker image.