/alpine-python3-requests

Small Alpine-based python3 docker image with Requests library

Primary LanguageDockerfileMIT LicenseMIT

Docker Stars Docker Pulls

Python 3.6 Docker image with Requests

This image is based on frolvlad/alpine-python3, which itself is based on Alpine Linux image, which is only a 5MB image, and contains Python 3.6, and the Requests library.

Download size of this image is only:

Usage Example

$ docker run --rm nyurik/alpine-python3-requests python3 -c 'print("Hello World")'

Once you have run this command you will get printed 'Hello World' from Python! Or use it interactivelly:

$ docker run -it --rm nyurik/alpine-python3-requests python3

NOTE: pip/pip3 is also available in this image.