base-images/tmf-python-base (sha256:79fc1ed5666e4195669421966639bd6ea5db7d12cbee5efc1b1da7f7c16be2e4)
Published 2026-06-25 13:08:27 -03:00 by tarcisio
Installation
docker pull git.trademarketingforce.com/tmf/base-images/tmf-python-base@sha256:79fc1ed5666e4195669421966639bd6ea5db7d12cbee5efc1b1da7f7c16be2e4sha256:79fc1ed5666e4195669421966639bd6ea5db7d12cbee5efc1b1da7f7c16be2e4About this package
Imagem base Python 3.12 (Alpine, piloto CVE-zero) com deps comuns + document/RAG
Image 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 |
| ENV LANG=C.UTF-8 |
| RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit |
| ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 |
| ENV PYTHON_VERSION=3.12.13 |
| ENV PYTHON_SHA256=c08bc65a81971c1dd5783182826503369466c7e67374d1646519adf05207b684 |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev dpkg-dev dpkg findutils 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 LC_ALL=C.UTF-8 LANG=C.UTF-8 PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 |
| RUN /bin/sh -c apk add --no-cache libpq postgresql-client tesseract-ocr tesseract-ocr-data-por poppler-utils cairo pango harfbuzz gdk-pixbuf fontconfig ttf-liberation libjpeg-turbo zlib freetype libpng libxml2 libxslt libffi openssl xmlsec hiredis bash curl ca-certificates git # buildkit |
| WORKDIR /tmp/base-deps |
| COPY requirements-base.txt . # buildkit |
| RUN /bin/sh -c pip install --no-cache-dir -r requirements-base.txt && rm -rf /tmp/base-deps # buildkit |
| WORKDIR /app |
| HEALTHCHECK {Test:[CMD-SHELL python -c "import sys; sys.exit(0)" || exit 1] Interval:30s Timeout:5s StartPeriod:10s StartInterval:0s Retries:3} |
| LABEL org.opencontainers.image.source=https://git.trademarketingforce.com/TMF/infra org.opencontainers.image.title=tmf-python-base org.opencontainers.image.description=Imagem base Python 3.12 (Alpine, piloto CVE-zero) com deps comuns + document/RAG org.opencontainers.image.licenses=proprietary org.opencontainers.image.vendor=Trade Marketing Force |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.description | Imagem base Python 3.12 (Alpine, piloto CVE-zero) com deps comuns + document/RAG |
| org.opencontainers.image.licenses | proprietary |
| org.opencontainers.image.source | https://git.trademarketingforce.com/TMF/infra |
| org.opencontainers.image.title | tmf-python-base |
| org.opencontainers.image.vendor | Trade Marketing Force |
Details
2026-06-25 13:08:27 -03:00
Versions (7)
View all
Container
10
OCI / Docker
linux/amd64
proprietary
273 MiB
3.12-uv
2026-08-31
3.12
2026-08-31
3.12-alpine-uv
2026-08-31
3.12-alpine
2026-06-25
3.12-alpine-20260625
2026-06-25