Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Latest commit

 

History

History
39 lines (25 loc) · 1.79 KB

File metadata and controls

39 lines (25 loc) · 1.79 KB

Docker Stars Docker Pulls

Python 3 Docker image for ARM arch

This image is based on Alpine Linux image build by Hypriot for Raspberry Pi, which is only a 6.7MB image, The latest release is based on the stable 3.5 Alpine packages and contains Python 3.5.2. The edge release is based on the 'edge' Alpine packages and contains Python 3.6.1.

Download size of this image is only:

Python 3.5 Python 3.6

Usage

Example for Python 3.5 (latest/stable release of Alpine)

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

Example for Python 3.6 (edge/unstable release of Alpine)

$ docker run --rm mielune/alpine-python3-arm:edge python3 -c 'print("Hello World")'

Once you have run this command you will get printed 'Hello World' from Python!

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

Thank's to Hypriot for the Raspberry build of Alpinelinux and to frolvlad for the Alpine-Python3 project from where I forked.