https://github.com/nyurik/alpine-python3-requests
Small Alpine-based python3 docker image with Requests library
https://github.com/nyurik/alpine-python3-requests
Last synced: about 1 month ago
JSON representation
Small Alpine-based python3 docker image with Requests library
- Host: GitHub
- URL: https://github.com/nyurik/alpine-python3-requests
- Owner: nyurik
- License: mit
- Created: 2018-10-16T13:25:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T13:37:49.000Z (over 6 years ago)
- Last Synced: 2025-03-07T16:09:53.914Z (about 2 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://hub.docker.com/r/nyurik/alpine-python3-requests/)
[](https://hub.docker.com/r/nyurik/alpine-python3-requests/)Python 3.6 Docker image with Requests
=======================This image is based on [frolvlad/alpine-python3](https://hub.docker.com/r/frolvlad/alpine-python3/), which itself is based on Alpine Linux image, which is only a 5MB image, and contains
[Python 3.6](https://www.python.org/), and the [Requests library](http://docs.python-requests.org/en/master/).Download size of this image is only:
[](http://microbadger.com/images/nyurik/alpine-python3-requests "Get your own image badge on microbadger.com")
Usage Example
-------------```bash
$ 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:
```bash
$ docker run -it --rm nyurik/alpine-python3-requests python3
```NOTE: `pip`/`pip3` is also available in this image.