diff --git a/docs/guides/integration/docker.md b/docs/guides/integration/docker.md index e457e986ed970..d00dd4ede1b0f 100644 --- a/docs/guides/integration/docker.md +++ b/docs/guides/integration/docker.md @@ -222,17 +222,20 @@ $ docker run -it $(docker build -q .) /bin/bash -c "cowsay -t hello" ENV UV_TOOL_BIN_DIR=/opt/uv-bin/ ``` -### Installing Python in musl-based images +### Installing Python in musl-based ARM images While uv [installs a compatible Python version](../install-python.md) if there isn't one available -in the image, uv does not yet support installing Python for musl-based distributions. For example, -if you are using an Alpine Linux base image that doesn't have Python installed, you need to add it -with the system package manager: +in the image, uv does not yet support installing Python for musl-based distributions on aarch64. For +example, if you are using an Alpine Linux aarch64 base image that doesn't have Python installed, you +need to add it with the system package manager: ```shell apk add --no-cache python3~=3.12 ``` +As of uv 0.6.6, uv does automatically install a compatible Python version on musl-based amd64 +images, but not yet on aarch64. + ## Developing in a container When developing, it's useful to mount the project directory into a container. With this setup,