Base Docker images for python releases
Below you can view a summary of supported series and distribution codenames with the current release built for each one.
The tags can be derivated for the table in the following formats:
The tags are unique for a composition of version/target or release/target:
- version/target →
infra7/python:<version>-<target>
(eg. infra7/python:3.13-bookworm) - release/target →
infra7/python:<release>-<target>
(eg. infra7/python:3.13.0-bookworm)
The tags are related to default target (currently 'bookworm'):
- version →
infra7/python:<version>
(eg. infra7/python:3.13) - release →
infra7/python:<release>
(eg. infra7/python:3.13.0) - latest →
infra7/python:latest
(eg. infra7/python:latest)
The table below shows the build status for the latest release for each python version on each of supported target:
Python Version → | 3.13 | 3.12 | 3.11 | 3.10 | 3.9 |
---|---|---|---|---|---|
Target ↓ / Release → | 3.13.0 | 3.12.7 | 3.11.10 | 3.10.15 | 3.9.20 |
Debian (trixie)¹ | |||||
Debian (bookworm) | ✓ | ✓ | ✓ | ✓ | ✓ |
Ubuntu (jammy) | |||||
Ubuntu (noble) |
Caution
¹ Debian 12 (Trixie) is unstable version. Please do not use it on production deployments.
amd64
→ 64-bit x86 (AMD/Intel): amd64, x86_64, x86arm64
→ 64-bit ARM: arm64, arm64v8, aarch64
Python is an interpreted, interactive, object-oriented, open-source programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types, and classes. Python combines remarkable power with very clear syntax. It has interfaces to many system calls and libraries, as well as to various window systems, and is extensible in C or C++. It is also usable as an extension language for applications that need a programmable interface. Finally, Python is portable: it runs on many Unix variants, on the Mac, and on Windows 2000 and later.²
² See more: wikipedia.org/wiki/Python_(programming_language)
The official docker images for Python are great, but they are bloated. Therefore, we have simplified the Dockerfile and the process of building these images so that we can build an image for any version of Python on any supported distribution without any sacrifice in source code handling and/or without any or minimal changes to the Dockerfiles.
We chose to build Python containers based only on the latest versions of Debian stable and Ubuntu LTS. Support for other base images will be added in the future, but we decided to abandon the Alpine build because the Python built on musl libc leads to major problems for a large number of projects.
FROM infra7/python:3.13
COPY requirements.txt /usr/src/app/
WORKDIR /usr/src/app
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "./app.py"]
Now, you can build and run your Docker image:
$ docker buildx build -t local/my-app .
$ docker run --rm -it -name my-app local/my-app
To run a simple script or a single-file project, there is no need to write a full Dockerfile. In such cases, you can run a Python script using the Python Docker image directly:
$ docker run --rm -it --name my-script -v "${PWD}":/usr/src/myapp -w /usr/src/myapp local/myapp python my-script.py
Our python
images are bought to you in many flavours, each of them
designed for a specific use case.
infra7/python:<version>
This is the actual image. If you're not sure what your needs are, you should probably use it. It is designed to be used both as a disposable container (assemble your source code and launch the container to launch your application) as well as a base for building other images.
Some of these tags may have names like bookworm or jammy. These are the codenames of the sets for versions (of GNU/Linux distributions) of Debian or Ubuntu and indicate which OS version the image was based on. If your image needs to install any additional packages beyond those that come with the image, you will probably want to specify one of these explicitly to minimize breakages when there are new releases of the distribution.
This image does not contain the common packages contained in the default tag and only contains the minimum packages required to run python. It was built only with GNU/Linux bases, as this is the focus of Infra7's development. It aims to be a basis for developing Docker images suitable for your application. Then your built image will be lightweight and quick to deploy.
For more information, licensing, bug-reports and discussions, visit our project at GitHub: infra7ti/docker-python