TMF

base-images/tmf7-core (sha256:5fd061d87a99ff12c314813d0555a9fe089e2972ff31258282a9cb9f4fad00da)

Published 2026-08-27 00:45:49 -03:00 by tarcisio

Installation

docker pull git.trademarketingforce.com/tmf/base-images/tmf7-core@sha256:5fd061d87a99ff12c314813d0555a9fe089e2972ff31258282a9cb9f4fad00da
sha256:5fd061d87a99ff12c314813d0555a9fe089e2972ff31258282a9cb9f4fad00da

Image layers

ADD file:d08e242792caa7f842fcf39a09ad59c97a856660e2013d5aed3e4a29197e9aaa in /
CMD ["bash"]
/bin/sh -c set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php
ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/*
ENV PHP_INI_DIR=/usr/local/etc/php
/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 777 /var/www/html
ENV APACHE_CONFDIR=/etc/apache2
ENV APACHE_ENVVARS=/etc/apache2/envvars
/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR"
/bin/sh -c a2dismod mpm_event && a2enmod mpm_prefork
/bin/sh -c { echo '<FilesMatch \.php$>'; echo '\tSetHandler application/x-httpd-php'; echo '</FilesMatch>'; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo '<Directory /var/www/>'; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo '</Directory>'; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_LDFLAGS=-Wl,-O1 -pie
ENV GPG_KEYS=42670A7FE4D0441C8E4632349E4FDC074A4EF02D 5A52880781F755608BF815FC910DEB46F53EA312
ENV PHP_VERSION=7.4.33
ENV PHP_URL=https://www.php.net/distributions/php-7.4.33.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-7.4.33.tar.xz.asc
ENV PHP_SHA256=924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927
/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/
/bin/sh -c docker-php-ext-enable sodium
ENTRYPOINT ["docker-php-entrypoint"]
STOPSIGNAL SIGWINCH
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/
WORKDIR /var/www/html
EXPOSE 80
CMD ["apache2-foreground"]
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends cron curl git vim unzip libcurl4-openssl-dev libfreetype6-dev libjpeg62-turbo-dev libpng-dev libwebp-dev libicu-dev libldap2-dev libpspell-dev libxml2-dev libxslt1-dev libzip-dev libc-client-dev libkrb5-dev libmagickwand-dev && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && docker-php-ext-configure imap --with-kerberos --with-imap-ssl && docker-php-ext-install -j"$(nproc)" calendar curl exif ftp gd gettext imap intl ldap mysqli opcache pdo_mysql pspell shmop soap sockets sysvmsg sysvsem sysvshm xsl zip # buildkit
RUN /bin/sh -c pecl install imagick && docker-php-ext-enable imagick # buildkit
RUN /bin/sh -c a2enmod rewrite headers # buildkit
RUN /bin/sh -c printf '<Directory /var/www/html>\n AllowOverride All\n Require all granted\n</Directory>\n' > /etc/apache2/conf-available/tmf-override.conf && a2enconf tmf-override # buildkit
COPY /yiiframework-1.1.32/ /home/server/yiiframework/yii-1.1.32/ # buildkit
COPY /yiiframework-1.1.32/ /home/server/yiiframework/ # buildkit
COPY /aws-sdk/ /home/server/aws-sdk/ # buildkit
RUN /bin/sh -c { echo 'display_errors = Off'; echo 'display_startup_errors = Off'; echo 'log_errors = On'; echo 'error_log = /dev/stderr'; echo 'memory_limit = 512M'; echo 'max_execution_time = 300'; echo 'max_input_vars = 10000'; echo 'post_max_size = 256M'; echo 'upload_max_filesize = 256M'; echo 'expose_php = Off'; } > /usr/local/etc/php/conf.d/tmf.ini # buildkit
RUN /bin/sh -c { echo 'opcache.enable = 1'; echo 'opcache.memory_consumption = 256'; echo 'opcache.max_accelerated_files = 20000'; echo 'opcache.validate_timestamps = 0'; } > /usr/local/etc/php/conf.d/opcache.ini # buildkit
EXPOSE [80/tcp]
RUN /bin/sh -c set -eu; export DEBIAN_FRONTEND=noninteractive; apt-get update; apt-get dist-upgrade -y --no-install-recommends; apt-get autoremove -y --purge; rm -rf /var/lib/apt/lists/*; echo "Debian $(cat /etc/debian_version)"; V="$(dpkg-query -W -f='${Version}' apache2)"; echo "apache2 ${V}"; dpkg --compare-versions "$V" ge 2.4.61-1~deb11u1 || { echo "ERRO: apache2 ${V} abaixo de 2.4.61-1~deb11u1 — bullseye-security nao respondeu?"; exit 1; } # buildkit
RUN /bin/sh -c set -eu; apt-get update; apt-get install -y --no-install-recommends libmcrypt-dev; pecl install mcrypt-1.0.7; docker-php-ext-enable mcrypt; php -r 'if(!function_exists("mcrypt_module_open")) { echo "ERRO: mcrypt nao carregou\n"; exit(1); }'; apt-get purge -y --auto-remove; rm -rf /var/lib/apt/lists/* # buildkit
ARG AWS_SDK_VERSION=3.288.1
COPY docker/aws-sdk.zip /tmp/aws.zip # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c set -eu; apt-get update; apt-get install -y --no-install-recommends unzip ca-certificates; rm -rf /tmp/aws-novo /tmp/aws-wrap; mkdir -p /tmp/aws-novo /tmp/aws-wrap; unzip -q /tmp/aws.zip -d /tmp/aws-wrap; unzip -q /tmp/aws-wrap/aws.zip -d /tmp/aws-novo; test -d /tmp/aws-novo/Aws/QuickSight || { echo "ERRO: o pacote baixado nao tem Aws/QuickSight — versao errada."; exit 1; }; test -d /tmp/aws-novo/Aws/S3 || { echo "ERRO: o pacote baixado nao tem Aws/S3 — pacote incompleto."; exit 1; }; rm -rf /home/server/aws-sdk; mv /tmp/aws-novo /home/server/aws-sdk; rm -rf /tmp/aws.zip /tmp/aws-wrap; apt-get purge -y --auto-remove unzip; rm -rf /var/lib/apt/lists/*; echo "AWS SDK atualizado para ${AWS_SDK_VERSION}: $(ls /home/server/aws-sdk/Aws | wc -l) servicos" # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c set -eu; for C in Aws/S3/S3Client Aws/QuickSight/QuickSightClient Aws/Ses/SesClient; do test -f "/home/server/aws-sdk/$C.php" || { echo "ERRO: /home/server/aws-sdk/$C.php ausente"; exit 1; }; done; test -f /home/server/aws-sdk/aws-autoloader.php || { echo "ERRO: aws-autoloader.php ausente — pacote incompleto"; exit 1; }; echo "SDK ok: S3Client, QuickSightClient e SesClient presentes" # buildkit
COPY . /var/www/html/ # buildkit
WORKDIR /var/www/html
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c set -eu; CLASSMAP=/var/www/html/vendor/composer/autoload_classmap.php; if [ ! -f "$CLASSMAP" ]; then echo "ERRO: vendor/ ausente — rode 'composer install --no-dev' antes do build"; exit 1; fi; BYTES=$(stat -c%s "$CLASSMAP"); echo "autoload_classmap.php: ${BYTES} bytes"; if [ "$BYTES" -lt 100000 ]; then echo "ERRO: autoload de ${BYTES} bytes — esperado ~240 KB."; echo " Provavel vendor/ vazio ou sobrescrito pelo do cliente."; exit 1; fi; php -r 'require "/var/www/html/vendor/autoload.php"; foreach (["PhpOffice\\PhpSpreadsheet\\Spreadsheet", "Symfony\\Component\\Mailer\\Mailer"] as $c) { if (!class_exists($c)) { fwrite(STDERR, "ERRO: $c nao carrega do vendor\n"); exit(1); } } echo "vendor do composer: ok\n";'; php -r 'require "/home/server/aws-sdk/aws-autoloader.php"; foreach (["Aws\\S3\\S3Client","Aws\\Ses\\SesClient"] as $c) { if (!class_exists($c)) { fwrite(STDERR, "ERRO: $c nao carrega da imagem base\n"); exit(1); } } echo "SDK AWS (imagem base): ok\n";' # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c find /var/www/html -maxdepth 1 -type f \( -iname 'Dockerfile*' -o -iname 'docker-compose*' -o -iname 'bitbucket-pipelines.yml' -o -iname 'buildspec.yml' \) -delete || true; rm -rf /var/www/html/.git /var/www/html/.forgejo # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c mkdir -p /var/www/html/protected/runtime /var/www/html/assets /var/www/html/files/uploads /var/www/html/files/tmp && chown -R www-data:www-data /var/www/html/protected/runtime /var/www/html/assets /var/www/html/files # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c set -eu; printf '%s\n' '<IfModule mpm_prefork_module>' ' StartServers 5' ' MinSpareServers 5' ' MaxSpareServers 10' ' MaxRequestWorkers 25' ' MaxConnectionsPerChild 1000' '</IfModule>' > /etc/apache2/mods-available/mpm_prefork.conf && apache2ctl configtest # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c printf '%s\n' 'LogFormat "%v %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %D" tmf_timed' 'CustomLog /dev/stdout tmf_timed' > /etc/apache2/conf-enabled/99-tmf-log-tempo.conf && apache2ctl configtest # buildkit
RUN |1 AWS_SDK_VERSION=3.288.1 /bin/sh -c grep -q '/access.log combined' /etc/apache2/sites-available/000-default.conf && sed -i 's|/access.log combined|/access.log tmf_timed|' /etc/apache2/sites-available/000-default.conf && grep -q '/access.log tmf_timed' /etc/apache2/sites-available/000-default.conf && apache2ctl configtest # buildkit
ARG CORE_VERSION=0.5.18-rc5
RUN |2 AWS_SDK_VERSION=3.288.1 CORE_VERSION=0.5.18-rc5 /bin/sh -c printf '%s\n' "${CORE_VERSION}" > /etc/tmf7-core-version && [ -s /etc/tmf7-core-version ] # buildkit
ARG CORE_COMMIT=f1eb5aa41
RUN |3 AWS_SDK_VERSION=3.288.1 CORE_VERSION=0.5.18-rc5 CORE_COMMIT=f1eb5aa41 /bin/sh -c printf '%s\n' "${CORE_COMMIT}" > /etc/tmf7-core-commit # buildkit
EXPOSE [80/tcp]
Details
Container
2026-08-27 00:45:49 -03:00
0
OCI / Docker
linux/amd64
430 MiB
Versions (51) View all
7.2026.36.7 2026-09-04
latest 2026-09-04
7.2026.36.5 2026-09-03
7.2026.36.4 2026-09-03
7.2026.36.3 2026-09-03