https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
Small Docker image with Python Machine Learning tools (~180MB) https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/
https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
alpine docker-image machine-learning numpy pandas python scikit-learn scipy
Last synced: about 1 month ago
JSON representation
Small Docker image with Python Machine Learning tools (~180MB) https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-python-machinelearning
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2016-09-26T11:27:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-06T21:05:30.000Z (about 1 month ago)
- Last Synced: 2025-04-06T22:19:52.038Z (about 1 month ago)
- Topics: alpine, docker-image, machine-learning, numpy, pandas, python, scikit-learn, scipy
- Language: Dockerfile
- Homepage:
- Size: 13.7 KB
- Stars: 80
- Watchers: 9
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/)
[](https://hub.docker.com/r/frolvlad/alpine-python-machinelearning/)Python Machine Learning tools Docker image
==========================================This image is based on
[Alpine Linux Python 3.5 image](https://hub.docker.com/r/frolvlad/alpine-python3/),
which is only a 60MB image, and contains popular Machine Leaning tools:* numpy
* pandas
* scipy
* scikit-learnDownload size of this image is only:
[](http://microbadger.com/images/frolvlad/alpine-python-machinelearning "Get your own image badge on microbadger.com")
Usage Example
-------------```bash
$ docker run --rm frolvlad/alpine-python-machinelearning python3 -c 'import numpy; print(numpy.arange(3))'
```Once you have run this command you will get printed `array([0, 1, 2])` from Python!