Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/docker-hub-frolvlad/docker-alpine-python3
The smallest Docker image with Python 3.7 (~57MB)
https://github.com/docker-hub-frolvlad/docker-alpine-python3
alpine docker-image python
Last synced: about 8 hours ago
JSON representation
The smallest Docker image with Python 3.7 (~57MB)
- Host: GitHub
- URL: https://github.com/docker-hub-frolvlad/docker-alpine-python3
- Owner: Docker-Hub-frolvlad
- License: mit
- Created: 2015-04-06T11:56:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T01:37:15.000Z (8 months ago)
- Last Synced: 2024-04-20T20:54:26.049Z (7 months ago)
- Topics: alpine, docker-image, python
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/frolvlad/alpine-python3/
- Size: 23.4 KB
- Stars: 225
- Watchers: 7
- Forks: 94
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Docker Stars](https://img.shields.io/docker/stars/frolvlad/alpine-python3.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-python3/)
[![Docker Pulls](https://img.shields.io/docker/pulls/frolvlad/alpine-python3.svg?style=flat-square)](https://hub.docker.com/r/frolvlad/alpine-python3/)Python 3.11 Docker image
========================This image is based on Alpine Linux image, which is only a 5MB image, and contains
[Python 3.x](https://www.python.org/).This image is only 71MB on disk.
Usage Example
-------------```bash
$ docker run --rm frolvlad/alpine-python3 python3 -c 'print("Hello World")'
```Once you have run this command you will get printed 'Hello World' from Python! Or use it interactivelly:
```bash
$ docker run -it --rm frolvlad/alpine-python3 python3
```NOTE: `pip`/`pip3` is also available in this image.