Namespace
astral
Image / Tag
uv:0.8.15-python3.14-rc-trixie-slim
Content Digest
sha256:ec8fb6f6bf5ee1a8627a3382f7cc1399cc37b8c3c7fe00f348938c442270e06a
Details
Created

2025-09-03 14:16:56 UTC

Size

61.7 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-09-03T14:16:40.158Z
  • org.opencontainers.image.description
    An extremely fast Python package and project manager, written in Rust.
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    8473ecba11664c70628d776c44f60afefee0b49f
  • org.opencontainers.image.source
    https://github.com/astral-sh/uv
  • org.opencontainers.image.title
    uv
  • org.opencontainers.image.url
    https://github.com/astral-sh/uv
  • org.opencontainers.image.version
    0.8.15-python3.14-rc-trixie-slim

Environment
PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_SHA256

bc62854cf232345bd22c9091a68464e01e056c6473a3fffa84572c8a342da656

PYTHON_VERSION

3.14.0rc2

UV_TOOL_BIN_DIR

/usr/local/bin


Layers

[#000] sha256:396b1da7636e2dcd10565cb4f2f952cbb4a8a38b58d3b86a2cacb172fb70117c - 46.05% (28.4 MB)

[#001] sha256:39dbc916b2220e89a28000739603e1beae2a16243f79fd77aac3976e560f5db5 - 2.0% (1.23 MB)

[#002] sha256:5dcf9ac932d982a075eef4ce414fda3b3ddff75b12f57b16882d1f6750e44581 - 18.79% (11.6 MB)

[#003] sha256:0889f28308b32cb6007b8e028716f34ffc636f16025f8aaec17cb5659e293208 - 0.0% (251 Bytes)

[#004] sha256:3d7fbe48678983e49cb28f254d98943e301b35110b133e882facc779526a7392 - 33.16% (20.4 MB)


History
2025-08-11 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'amd64' out/ 'trixie' '@1754870400'

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.14.0rc2

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=bc62854cf232345bd22c9091a68464e01e056c6473a3fffa84572c8a342da656

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared $(test "${gnuArch%%-*}" != 'riscv64' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; ;; esac; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-09-03 14:16:56 UTC (buildkit.dockerfile.v0)

COPY /uv /uvx /usr/local/bin/ # buildkit

2025-09-03 14:16:56 UTC (buildkit.dockerfile.v0)

ENV UV_TOOL_BIN_DIR=/usr/local/bin

2025-09-03 14:16:56 UTC (buildkit.dockerfile.v0)

ENTRYPOINT []

2025-09-03 14:16:56 UTC (buildkit.dockerfile.v0)

CMD ["/usr/local/bin/uv"]

Details
Created

2025-09-03 14:16:57 UTC

Size

60.6 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-09-03T14:16:40.158Z
  • org.opencontainers.image.description
    An extremely fast Python package and project manager, written in Rust.
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    8473ecba11664c70628d776c44f60afefee0b49f
  • org.opencontainers.image.source
    https://github.com/astral-sh/uv
  • org.opencontainers.image.title
    uv
  • org.opencontainers.image.url
    https://github.com/astral-sh/uv
  • org.opencontainers.image.version
    0.8.15-python3.14-rc-trixie-slim

Environment
PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_SHA256

bc62854cf232345bd22c9091a68464e01e056c6473a3fffa84572c8a342da656

PYTHON_VERSION

3.14.0rc2

UV_TOOL_BIN_DIR

/usr/local/bin


Layers

[#000] sha256:9a6263cdeaa5d408640880103ee36920ef814974ca8e2674412ad6460e8968c9 - 47.44% (28.7 MB)

[#001] sha256:154984c62312d1e953ed4c6537c1c8d5861dd7f71722fdcf65fd01e0dae9e79c - 2.0% (1.21 MB)

[#002] sha256:eafb856357b27b6e1499dc8f7fc3325fac9c1c6cf539d70ac6b6a575a6fc40db - 18.98% (11.5 MB)

[#003] sha256:e8d966e1118af1386c4f328ff8bf7e270c1fff05646b7be6dafb8278356f7dc2 - 0.0% (250 Bytes)

[#004] sha256:d0c84fce4414db0c953d06d24393d28e22dea817c33911806f7c7bf22a9bfdd7 - 31.58% (19.1 MB)


History
2025-08-11 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'arm64' out/ 'trixie' '@1754870400'

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.14.0rc2

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=bc62854cf232345bd22c9091a68464e01e056c6473a3fffa84572c8a342da656

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared $(test "${gnuArch%%-*}" != 'riscv64' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; ;; esac; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2025-08-14 23:50:14 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-09-03 14:16:57 UTC (buildkit.dockerfile.v0)

COPY /uv /uvx /usr/local/bin/ # buildkit

2025-09-03 14:16:57 UTC (buildkit.dockerfile.v0)

ENV UV_TOOL_BIN_DIR=/usr/local/bin

2025-09-03 14:16:57 UTC (buildkit.dockerfile.v0)

ENTRYPOINT []

2025-09-03 14:16:57 UTC (buildkit.dockerfile.v0)

CMD ["/usr/local/bin/uv"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete