Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ericmiguel/docker-alpine-conda
Light Miniconda Docker image based on Alpine Linux.
https://github.com/ericmiguel/docker-alpine-conda
alpine-image docker miniconda python
Last synced: 7 days ago
JSON representation
Light Miniconda Docker image based on Alpine Linux.
- Host: GitHub
- URL: https://github.com/ericmiguel/docker-alpine-conda
- Owner: ericmiguel
- License: mit
- Created: 2021-09-21T18:11:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-21T20:35:09.000Z (over 3 years ago)
- Last Synced: 2024-04-14T03:11:09.954Z (10 months ago)
- Topics: alpine-image, docker, miniconda, python
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alpine + Miniconda Docker image
Based on Alpine Linux, this image is ```~50% lighter``` than ```continuumio/miniconda3```.
More details about Alpine compiled against glibc, see [frolvlad`s repository](https://github.com/Docker-Hub-frolvlad/docker-alpine-glibc).
## Versions
- miniconda ```4.10.3```
- python ```3.9.5```
- alpine ```3.14```## Usage Example
```bash
docker pull ericmiguel/alpine-conda:{tag}
``````Dockerfile
FROM ericmiguel/alpine-conda:0.0.1
LABEL MAINTAINER="Your name"COPY requirements.yaml /app
RUN conda env update -f requirements.yaml -n baseCOPY app /app
WORKDIR /app
CMD ["bash", "-c", "python app"]
```