From ed37f3b432ce4423042708ea23149b0d91c051fa Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 12 Dec 2025 13:15:15 -0600 Subject: [PATCH] Drop arm musl caveat from Docker documentation (#17111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This works fine now ``` ❯ docker run --rm -it ghcr.io/astral-sh/uv:alpine sh -c "uv python install 3.14" Installed Python 3.14.2 in 2.77s + cpython-3.14.2-linux-aarch64-musl (python3.14) ``` --- docs/guides/integration/docker.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/guides/integration/docker.md b/docs/guides/integration/docker.md index f26b68e8d..5b54202b7 100644 --- a/docs/guides/integration/docker.md +++ b/docs/guides/integration/docker.md @@ -251,17 +251,6 @@ $ docker run -it $(docker build -q .) /bin/bash -c "cowsay -t hello" ENV UV_TOOL_BIN_DIR=/opt/uv-bin/ ``` -### Installing Python in ARM musl images - -While uv will attempt to [install a compatible Python version](../install-python.md) if no such -version is available in the image, uv does not yet support installing Python for musl Linux on ARM. -For example, if you are using an Alpine Linux base image on an ARM machine, you may need to add it -with the system package manager: - -```shell -apk add --no-cache python3~=3.12 -``` - ## Developing in a container When developing, it's useful to mount the project directory into a container. With this setup,