python icon indicating copy to clipboard operation
python copied to clipboard

Docker Official Image packaging for Python

Results 53 python issues
Sort by recently updated
recently updated
newest added

This is for testing, not for merging. See: - https://docs.python.org/3.13/whatsnew/3.13.html#free-threaded-cpython - https://github.com/docker-library/python/issues/947 - https://github.com/docker-library/python/issues/1082 Test it with something like: ```console $ docker build --pull https://github.com/docker-library/python.git#refs/pull/1044/merge:3.13/slim-bookworm ```

Since #947 has been closed by the OP, I thought I'd reopen this here, since the free-threaded build is now a fully-supported build as of [PEP 779](https://peps.python.org/pep-0779/). Is there an...

This is for testing, not for merging. See: - https://docs.python.org/3.13/whatsnew/3.13.html#an-experimental-just-in-time-jit-compiler - https://github.com/docker-library/python/issues/947 - https://github.com/docker-library/python/issues/1009 - https://github.com/docker-library/python/issues/1082 - https://github.com/docker-library/python/pull/1043 - https://github.com/docker-library/python/pull/1044 Test it with something like: ```console $ docker build --pull...

we have been using the python:3.13-alpine image for some time. The recent update from 3.13.6 to 3.13.7 has a breaking change. Apk update (or apk add) results in permission denied...

This may be an expected breaking change, but running the following python code in python:slim stopped working yesterday with the move to Debian Trixie : ``` >> from zoneinfo import...

JFrog's Xray scanner reports this and other CVEs: CVE-2025-4435 CVE-2025-4330 CVE-2025-4138 Those all are coming from python3.11.12. I know that the latest image is supposed to have 3.11.13 but, it...

Can the 3.14 images enable the tail call interpreter? IIUC this brings a 5-6% free performance improvement https://docs.python.org/3.14/using/configure.html#cmdoption-with-tail-call-interp

I'm trying to build a Docker image using the following base images: - `mundialis/actinia:alpine-dependencies-2024-12-14` - `osgeo/grass-gis:releasebranch_8_4-alpine` Inside the Dockerfile, when I run this line: ```dockerfile RUN /usr/bin/python -m venv --system-site-packages...

# Overview I found a strange pip problem on windows based image related to python packages that are installed with capital letters in their folder name. The problem is happening...

According to http://bugs.alpinelinux.org/issues/5264 its known, that find_library is broken with python3 on Alpine. However, with python2 it works on pure alpine:3.3, ``` $ docker run --rm -ti alpine:3.3 sh -c...

question