Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/normalhuman01/conda-docker-sample
a python + conda + docker basic setup
https://github.com/normalhuman01/conda-docker-sample
Last synced: 17 days ago
JSON representation
a python + conda + docker basic setup
- Host: GitHub
- URL: https://github.com/normalhuman01/conda-docker-sample
- Owner: normalhuman01
- License: mit
- Created: 2023-12-13T17:37:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-13T17:38:34.000Z (about 1 year ago)
- Last Synced: 2023-12-13T19:11:46.349Z (about 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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 + DockerTo 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.