Namespace
astral
Image / Tag
uv:0.7.16-python3.11-alpine
Content Digest
sha256:b498e56da929ad3487bc277bafedf36852105fdf5af99f564667e6a82c30009d
Details
Created

2025-06-27 21:49:00 UTC

Size

37.6 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-06-27T21:48:58.187Z
  • 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
    b6b7409d13e53b7f0752dc053bce9bd3b233269b
  • 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.7.16-python3.11-alpine

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_SHA256

8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

PYTHON_VERSION

3.11.13


Layers

[#000] sha256:fe07684b16b82247c3539ed86a65ff37a76138ec25d380bd80c869a1a4c73236 - 9.64% (3.62 MB)

[#001] sha256:6760217c9b2110cfef8eec91415fd408ce564ab368e483924d4cb963e37b31cf - 1.17% (449 KB)

[#002] sha256:7f6e5b96bd814093e9e436fd11f5b83f83280688d0290f87954800b3a89196dd - 41.21% (15.5 MB)

[#003] sha256:001a982bd46375c72e605501ad0cc9e18d462f1a1acceab0ffb36efd6ac311b7 - 0.0% (249 Bytes)

[#004] sha256:b570cdfd5c16b40246231aaac2a00b14d2ef5949c94c7ad9864e6e20064325cc - 47.98% (18 MB)


History
2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.22.0-x86_64.tar.gz / # buildkit

2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

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

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.13

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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 -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; 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-option-checking=fatal --enable-shared $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-06-03 23:02:53 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-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-06-27 21:49:00 UTC (buildkit.dockerfile.v0)

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

2025-06-27 21:49:00 UTC (buildkit.dockerfile.v0)

ENTRYPOINT []

2025-06-27 21:49:00 UTC (buildkit.dockerfile.v0)

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

Details
Created

2025-06-27 21:49:00 UTC

Size

36.7 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-06-27T21:48:58.187Z
  • 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
    b6b7409d13e53b7f0752dc053bce9bd3b233269b
  • 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.7.16-python3.11-alpine

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_SHA256

8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

PYTHON_VERSION

3.11.13


Layers

[#000] sha256:d69d4d41cfe2ee680d6972795e2a1eb9e4dc4ec3b3c5e0797c9ab43bb3726fa7 - 10.74% (3.94 MB)

[#001] sha256:0303525f5fc2078701bddff73754961e5f7f6980fdb042875c249b94fea4d72a - 1.2% (451 KB)

[#002] sha256:0b55b92e8094a82f5b9b8d7d818ebb43d423dad10ac251631f4f41ab19750f8b - 42.35% (15.6 MB)

[#003] sha256:8f59bc5b33a45e23c3c01d2a065c41d20958c01a1d3c5e4fcdb894eb2d4d4214 - 0.0% (247 Bytes)

[#004] sha256:4158b007e2ffd886dd97b5e9a4480a8010c13ea32c1f2730286cb6d78815db48 - 45.7% (16.8 MB)


History
2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.22.0-aarch64.tar.gz / # buildkit

2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

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

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.13

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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 -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; 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-option-checking=fatal --enable-shared $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-06-03 23:02:53 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-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-06-27 21:49:00 UTC (buildkit.dockerfile.v0)

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

2025-06-27 21:49:00 UTC (buildkit.dockerfile.v0)

ENTRYPOINT []

2025-06-27 21:49:00 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