# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template FROM php:8.3-fpm-alpine ENV UPLOAD_PROGRESS_EXT_URL="https://github.com/php/pecl-php-uploadprogress/archive/refs/tags/uploadprogress-2.0.2.tar.gz" ENV UPLOAD_PROGRESS_SHA256="fe3f6cdfcedad563c970c4fd1cda31e422cfc0df5cc9a217d8c80ed3c8d137f5" # install and docker-entrypoint.sh dependencies RUN apk add --no-cache \ bash \ tzdata \ gnupg # Install dependencies RUN set -ex; \ \ apk add --no-cache --virtual .build-deps \ bzip2-dev \ freetype-dev \ libjpeg-turbo-dev \ libpng-dev \ libwebp-dev \ libxpm-dev \ libzip-dev \ ; \ \ mkdir -p /tmp/uploadprogress; \ curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \ echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \ tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \ \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \ docker-php-ext-install -j "$(nproc)" \ bz2 \ gd \ mysqli \ opcache \ zip \ bcmath \ /tmp/uploadprogress \ ; \ \ rm -r /tmp/uploadprogress; \ \ runDeps="$( \ scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \ | tr ',' '\n' \ | sort -u \ | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ )"; \ apk add --no-network --virtual .phpmyadmin-phpexts-rundeps $runDeps; \ apk del --no-network .build-deps # set recommended PHP.ini settings # see https://secure.php.net/manual/en/opcache.installation.php ENV PMA_SSL_DIR=/etc/phpmyadmin/ssl ENV MAX_EXECUTION_TIME=600 ENV MEMORY_LIMIT=512M ENV UPLOAD_LIMIT=2048K ENV TZ=UTC ENV SESSION_SAVE_PATH=/sessions RUN set -ex; \ mkdir $SESSION_SAVE_PATH; \ mkdir -p $PMA_SSL_DIR; \ chmod 1777 $SESSION_SAVE_PATH; \ chmod 755 $PMA_SSL_DIR; \ chown www-data:www-data /etc/phpmyadmin; \ chown www-data:www-data $PMA_SSL_DIR; \ chown www-data:www-data $SESSION_SAVE_PATH; \ \ { \ echo 'opcache.memory_consumption=128'; \ echo 'opcache.interned_strings_buffer=8'; \ echo 'opcache.max_accelerated_files=4000'; \ echo 'opcache.revalidate_freq=2'; \ echo 'opcache.fast_shutdown=1'; \ } > $PHP_INI_DIR/conf.d/opcache-recommended.ini; \ \ { \ echo 'session.cookie_httponly=1'; \ echo 'session.use_strict_mode=1'; \ } > $PHP_INI_DIR/conf.d/session-strict.ini; \ \ { \ echo 'allow_url_fopen=Off'; \ echo 'max_execution_time=${MAX_EXECUTION_TIME}'; \ echo 'max_input_vars=10000'; \ echo 'memory_limit=${MEMORY_LIMIT}'; \ echo 'post_max_size=${UPLOAD_LIMIT}'; \ echo 'upload_max_filesize=${UPLOAD_LIMIT}'; \ echo 'date.timezone=${TZ}'; \ echo 'session.save_path=${SESSION_SAVE_PATH}'; \ } > $PHP_INI_DIR/conf.d/phpmyadmin-misc.ini USER www-data:www-data # Calculate download URL ENV VERSION=5.2.3 ENV SHA256=57881348297c4412f86c410547cf76b4d8a236574dd2c6b7d6a2beebe7fc44e3 ENV URL=https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-all-languages.tar.xz LABEL org.opencontainers.image.title="Official phpMyAdmin Docker image" \ org.opencontainers.image.description="Run phpMyAdmin with Alpine, Apache and PHP FPM." \ org.opencontainers.image.authors="The phpMyAdmin Team " \ org.opencontainers.image.vendor="phpMyAdmin" \ org.opencontainers.image.documentation="https://github.com/phpmyadmin/docker#readme" \ org.opencontainers.image.licenses="GPL-2.0-only" \ org.opencontainers.image.version="${VERSION}" \ org.opencontainers.image.url="https://github.com/phpmyadmin/docker#readme" \ org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git" # Download tarball, verify it using gpg and extract RUN set -ex; \ \ export GNUPGHOME="$(mktemp -d)"; \ export GPGKEY="3D06A59ECE730EB71B511C17CE752F178259BD92"; \ curl -fsSL -o phpMyAdmin.tar.xz $URL; \ curl -fsSL -o phpMyAdmin.tar.xz.asc $URL.asc; \ echo "$SHA256 *phpMyAdmin.tar.xz" | sha256sum -c -; \ gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$GPGKEY" \ || gpg --batch --keyserver pgp.mit.edu --recv-keys "$GPGKEY" \ || gpg --batch --keyserver keyserver.pgp.com --recv-keys "$GPGKEY" \ || gpg --batch --keyserver keys.openpgp.org --recv-keys "$GPGKEY"; \ gpg --batch --verify phpMyAdmin.tar.xz.asc phpMyAdmin.tar.xz; \ tar -xf phpMyAdmin.tar.xz -C /var/www/html --strip-components=1; \ mkdir -p /var/www/html/tmp; \ gpgconf --kill all; \ rm -r "$GNUPGHOME" phpMyAdmin.tar.xz phpMyAdmin.tar.xz.asc; \ rm -r -v /var/www/html/setup/ /var/www/html/examples/ /var/www/html/js/src/ /var/www/html/babel.config.json /var/www/html/doc/html/_sources/ /var/www/html/RELEASE-DATE-$VERSION /var/www/html/CONTRIBUTING.md; \ grep -q -F "'configFile' => ROOT_PATH . 'config.inc.php'," /var/www/html/libraries/vendor_config.php; \ sed -i "s@'configFile' => .*@'configFile' => '/etc/phpmyadmin/config.inc.php',@" /var/www/html/libraries/vendor_config.php; \ grep -q -F "'configFile' => '/etc/phpmyadmin/config.inc.php'," /var/www/html/libraries/vendor_config.php; \ php -l /var/www/html/libraries/vendor_config.php; \ find /var/www/html -type d -exec chmod 555 {} \;; \ find /var/www/html -type f -exec chmod 444 {} \;; \ chmod 1777 /var/www/html/tmp; # Copy configuration COPY --chown=www-data:www-data config.inc.php /etc/phpmyadmin/config.inc.php COPY --chown=www-data:www-data helpers.php /etc/phpmyadmin/helpers.php # Copy main script COPY docker-entrypoint.sh /docker-entrypoint.sh USER root ENTRYPOINT [ "/docker-entrypoint.sh" ] CMD ["php-fpm"]