images/tmf-management (sha256:ffa0761cab0a7edf8ab92dfa6d9fc63c81e68c94616e8227950a9fc7ccb35fc9)
Published 2026-08-05 02:42:33 -03:00 by tarcisio
Installation
docker pull git.trademarketingforce.com/tmf/images/tmf-management@sha256:ffa0761cab0a7edf8ab92dfa6d9fc63c81e68c94616e8227950a9fc7ccb35fc9sha256:ffa0761cab0a7edf8ab92dfa6d9fc63c81e68c94616e8227950a9fc7ccb35fc9About 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 |
| RUN /bin/sh -c apk add --no-cache nginx supervisor # buildkit |
| RUN /bin/sh -c curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && rm kubectl # buildkit |
| RUN /bin/sh -c curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && unzip awscliv2.zip && ./aws/install && rm -rf awscliv2.zip aws/ # buildkit |
| RUN /bin/sh -c mkdir -p /app/backend /var/log/supervisor # buildkit |
| WORKDIR /app/backend |
| COPY backend/requirements.txt backend/requirements-app.txt ./ # buildkit |
| RUN /bin/sh -c if [ -n "${PYPI_TOKEN:-}" ]; then printf 'machine git.trademarketingforce.com\nlogin forgejo\npassword %s\n' "${PYPI_TOKEN}" > /root/.netrc; chmod 600 /root/.netrc; fi; pip install --no-cache-dir -r requirements.txt -r requirements-app.txt; rc=$?; rm -f /root/.netrc; exit $rc # buildkit |
| COPY backend/ . # buildkit |
| COPY CHANGELOG.md /app/CHANGELOG.md # buildkit |
| COPY VERSION /app/VERSION # buildkit |
| ARG APP_VERSION=1.266.0 |
| ENV APP_VERSION=1.266.0 |
| COPY scripts/migrations /app/backend/scripts/migrations # buildkit |
| COPY backend/integrations /app/extensions # buildkit |
| COPY scripts/db-sync /scripts/db-sync # buildkit |
| COPY infrastructure/k8s/templates /app/k8s/templates # buildkit |
| COPY /app/frontend/dist /usr/share/nginx/html # buildkit |
| COPY infrastructure/ip-allowlist-daemon /tmp/ip-daemon # buildkit |
| RUN |1 APP_VERSION=1.266.0 /bin/sh -c bash /tmp/ip-daemon/package.sh && mkdir -p /usr/share/nginx/html/dl && cp /tmp/ip-daemon/dist/*.tar.gz /tmp/ip-daemon/dist/*.sha256 /usr/share/nginx/html/dl/ && (cp /tmp/ip-daemon/dist/*.zip /usr/share/nginx/html/dl/ 2>/dev/null || true) && rm -rf /tmp/ip-daemon && echo "Artefatos publicados em /dl:" && ls -1 /usr/share/nginx/html/dl/ # buildkit |
| RUN |1 APP_VERSION=1.266.0 /bin/sh -c rm -f /etc/nginx/http.d/default.conf # buildkit |
| COPY scripts/ci-cd/deploy/nginx.conf /etc/nginx/http.d/default.conf # buildkit |
| RUN |1 APP_VERSION=1.266.0 /bin/sh -c mkdir -p /etc/supervisor/conf.d # buildkit |
| COPY scripts/ci-cd/deploy/supervisord.conf /etc/supervisor/conf.d/supervisord.conf # buildkit |
| COPY scripts/ci-cd/deploy/entrypoint.sh /entrypoint.sh # buildkit |
| RUN |1 APP_VERSION=1.266.0 /bin/sh -c chmod +x /entrypoint.sh # buildkit |
| EXPOSE [80/tcp] |
| HEALTHCHECK {Test:[CMD-SHELL curl -f http://localhost/health || exit 1] Interval:30s Timeout:10s StartPeriod:5s StartInterval:0s Retries:3} |
| ENTRYPOINT ["/entrypoint.sh"] |
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-08-05 02:42:33 -03:00
Versions (147)
View all
Container
0
OCI / Docker
linux/amd64
proprietary
440 MiB
sha-3583a4c4351c
2026-09-05
latest
2026-09-05
v1.291.0
2026-09-05
sha-c751f617d0f6
2026-09-04
v1.290.1
2026-09-04