Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/docker-hub-frolvlad/docker-alpine-miniconda3
The smallest Docker image with Miniconda3 (Python 3.7) (~143MB)
https://github.com/docker-hub-frolvlad/docker-alpine-miniconda3
alpine anaconda conda docker-image python
Last synced: about 10 hours ago
JSON representation
The smallest Docker image with Miniconda3 (Python 3.7) (~143MB)
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-miniconda3
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2016-07-28T08:12:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T12:00:48.000Z (11 months ago)
- Last Synced: 2024-04-20T20:54:27.029Z (7 months ago)
- Topics: alpine, anaconda, conda, docker-image, python
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-miniconda3/
- Size: 11.7 KB
- Stars: 114
- Watchers: 11
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-miniconda3.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-miniconda3/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-miniconda3.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-miniconda3/)Miniconda Python 3.7 Docker image
=================================This image is based on Alpine Linux image, which is only a 5MB image, and contains
[Python 3.7](https://www.python.org/) packaged by Continuum with Conda package manager.Download size of this image is only:
[![](https://images.microbadger.com/badges/image/frolvlad/alpine-miniconda3.svg)](http://microbadger.com/images/frolvlad/alpine-miniconda3 "Get your own image badge on microbadger.com")
NOTE: Conda repositories contain only Glibc linked packaged binaries for Linux,
so we have to use
[glibc workaround](https://github.com/gliderlabs/docker-alpine/issues/11) on
Alpine.Usage Example
-------------```bash
$ docker run --rm frolvlad/alpine-miniconda3 python -c 'print("Hello World")'
```Once you have run this command you will get printed 'Hello World' from Python!
NOTE: `conda` and `pip` are also available in this image.