python (0.1.0-python3.13)
Installation
docker pull forge.bolzga.net/forge-actions/python:0.1.0-python3.13sha256:c0d8964457056404a433cc86395c911dae726d2451bab2062d89708ffb76c770Image layers
| ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit |
| ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 |
| ENV PYTHON_VERSION=3.13.15 |
| ENV PYTHON_SHA256=1e66a7945a48390ee4c2a4268a0e4185884059a13c4aab6d148aa208deea4a76 |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev dpkg-dev dpkg findutils g++ gcc gdbm-dev gnupg libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tar tcl-dev tk tk-dev util-linux-dev xz 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' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:-} -Wl,--strip-all"; arch="$(apk --print-arch)"; case "$arch" in x86_64|aarch64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; x86) ;; *) 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 '{}' + ; 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 --version # buildkit |
| 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 |
| CMD ["python3"] |
| ENV PYTHONUNBUFFERED=1 |
| /bin/sh -c mkdir --mode 0755 /etc/xdg |
| ENV XDG_DATA_DIRS="/usr/local/share:/usr/share" XDG_CONFIG_DIRS="/etc/xdg" |
| ARG USER_UID |
| ARG USER_GID USER_UID |
| ARG USER_GID USER_NAME USER_UID |
| ARG USER_GID USER_GROUP USER_NAME USER_UID |
| ARG USER_GID USER_GROUP USER_HOME USER_NAME USER_UID |
| ARG USER_GID USER_GROUP USER_HOME USER_NAME USER_SHELL USER_UID |
| |6 USER_GID=2000 USER_GROUP=actions USER_HOME=/home/actions USER_NAME=actions USER_SHELL=/sbin/nologin USER_UID=2000 /bin/sh -c addgroup -g ${USER_GID} "${USER_GROUP}" |
| |6 USER_GID=2000 USER_GROUP=actions USER_HOME=/home/actions USER_NAME=actions USER_SHELL=/sbin/nologin USER_UID=2000 /bin/sh -c adduser "${USER_NAME}" -u ${USER_UID} -G "${USER_GROUP}" -h "${USER_HOME}" -s "${USER_SHELL}" -D -g "Forge Actions user user,,,," |
| COPY multi:cbb607c9a8669737387b21bc42a03d0157a36fa79799569f179111e5c0462837 in / |
| COPY multi:b81623148616e0dbe209e6027b8e4ac56730edd29a56510e7a1c23ec62456ac1 in / |
| VOLUME ${USER_HOME} |
| WORKDIR ${USER_HOME} |
| USER ${USER_NAME} |
| ENTRYPOINT [ "/entrypoint.sh" ]org.opencontainers.image.title=forge-actions/python,org.opencontainers.image.description=All Python—related Forge Actions.,org.opencontainers.image.source=https://forge.bolzga.net/forge-actions/python/src/commit/0.1.0/Containerfile,org.opencontainers.image.url=https://forge.bolzga.net/forge-actions/python,org.opencontainers.image.documentation=https://forge.bolzga.net/forge-actions/python/src/commit/0.1.0,org.opencontainers.image.authors=Artur Ciesielski <artur.ciesielski@gmail.com>,org.opencontainers.image.vendor=bolzga.net,org.opencontainers.image.licenses=GPL-3.0-or-later,org.opencontainers.image.version=0.1.0-python3.13,org.opencontainers.image.revision=ef09998bc03053b5d8c74aacb32c1f6e57149dedf71d3f347274645c237b548b,org.opencontainers.image.created=2026-09-06T16-06-39+0000 |
Labels
| Key | Value |
|---|---|
| io.buildah.version | 1.42.2 |
Details
Versions (10)
View all
0.1.0-python3.13-uv
2026-09-06
0.1.0-python3.14-uv
2026-09-06
0.1.0-python3.11-uv
2026-09-06
0.1.0-python3.12-uv
2026-09-06
0.1.0-python3.10-uv
2026-09-06