public/apache-php (sha256:6312b85fe4856884e6c37dce0cdaee3f3190a6406bc6c9da4177b0edb6ec7656)

Published 2025-11-06 10:28:19 +07:00 by panuwat.n

Installation

docker pull git.web2.rmutsv.ac.th/administrator/public/apache-php@sha256:6312b85fe4856884e6c37dce0cdaee3f3190a6406bc6c9da4177b0edb6ec7656
sha256:6312b85fe4856884e6c37dce0cdaee3f3190a6406bc6c9da4177b0edb6ec7656

Image Layers

# debian.sh --arch 'amd64' out/ 'bookworm' '@1751241600'
RUN /bin/sh -c set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php # buildkit
ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
RUN /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/* # buildkit
ENV PHP_INI_DIR=/usr/local/etc/php
RUN /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 1777 /var/www/html # buildkit
ENV APACHE_CONFDIR=/etc/apache2
ENV APACHE_ENVVARS=/etc/apache2/envvars
RUN /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" "$APACHE_RUN_DIR/socks" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$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" # buildkit
RUN /bin/sh -c a2dismod mpm_event && a2enmod mpm_prefork # buildkit
RUN /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 # buildkit
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=528995BFEDFBA7191D46839EF9BA0ADA31CBD89E 39B641343D8C104B2B146DC3F9C39DC0B9698544 F1F692238FBC1666E5A5CCD4199F9DFEF6FFBAFD
ENV PHP_VERSION=8.1.32
ENV PHP_URL=https://www.php.net/distributions/php-8.1.32.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.1.32.tar.xz.asc
ENV PHP_SHA256=c582ac682a280bbc69bc2186c21eb7e3313cc73099be61a6bc1d2cd337cbf383
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; 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 # buildkit
COPY docker-php-source /usr/local/bin/ # buildkit
RUN /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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | 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 # buildkit
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit
RUN /bin/sh -c docker-php-ext-enable opcache # buildkit
RUN /bin/sh -c docker-php-ext-enable sodium # buildkit
ENTRYPOINT ["docker-php-entrypoint"]
STOPSIGNAL SIGWINCH
COPY apache2-foreground /usr/local/bin/ # buildkit
WORKDIR /var/www/html
EXPOSE map[80/tcp:{}]
CMD ["apache2-foreground"]
ARG DEBIAN_FRONTEND=noninteractive
USER root
ENV TZ=Asia/Bangkok
ENV ACCEPT_EULA=Y
WORKDIR /var/www/html
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update -y && apt-get install -y apt-transport-https gnupg2 libpng-dev libzip-dev unzip curl cron && rm -rf /var/lib/apt/lists/* # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update -y && apt-get install -y msodbcsql17 && apt-get install -y mssql-tools && apt-get install -y unixodbc-dev && rm -rf /var/lib/apt/lists/* # buildkit
COPY /usr/bin/install-php-extensions /usr/bin/install-php-extensions # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c chmod uga+x /usr/bin/install-php-extensions # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c sync # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c install-php-extensions bcmath ds exif intl # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c install-php-extensions opcache pcntl redis # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c install-php-extensions zip ldap pcov # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c install-php-extensions pdo_sqlsrv sqlsrv # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y zlib1g-dev libpng-dev libjpeg-dev # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c docker-php-ext-install calendar dba gettext iconv # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c docker-php-ext-install mysqli pdo pdo_mysql # buildkit
COPY php-security.ini /usr/local/etc/php/conf.d/security.ini # buildkit
COPY .htaccess /var/www/html/.htaccess # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c echo "" >> /etc/apache2/apache2.conf && echo "# ===== Security Configuration =====" >> /etc/apache2/apache2.conf && echo "# ป้องกัน Directory Listing" >> /etc/apache2/apache2.conf && echo "<Directory /var/www/html>" >> /etc/apache2/apache2.conf && echo " Options -Indexes +FollowSymLinks" >> /etc/apache2/apache2.conf && echo " AllowOverride All" >> /etc/apache2/apache2.conf && echo " Require all granted" >> /etc/apache2/apache2.conf && echo "</Directory>" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo "# ป้องกันการเข้าถึงไฟล์ที่ซ่อน" >> /etc/apache2/apache2.conf && echo "<DirectoryMatch \"^/.*/\\.\">" >> /etc/apache2/apache2.conf && echo " Require all denied" >> /etc/apache2/apache2.conf && echo "</DirectoryMatch>" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo "<FilesMatch \"^\\\.\">" >> /etc/apache2/apache2.conf && echo " Require all denied" >> /etc/apache2/apache2.conf && echo "</FilesMatch>" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo "# ซ่อน Apache version" >> /etc/apache2/apache2.conf && echo "ServerTokens Prod" >> /etc/apache2/apache2.conf && echo "ServerSignature Off" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo "# ===== CORS Configuration =====" >> /etc/apache2/apache2.conf && echo "<IfModule mod_headers.c>" >> /etc/apache2/apache2.conf && echo " # ลบ header เก่าก่อนเพื่อป้องกันค่าซ้ำ" >> /etc/apache2/apache2.conf && echo " Header always unset Access-Control-Allow-Origin" >> /etc/apache2/apache2.conf && echo " Header always unset Access-Control-Allow-Methods" >> /etc/apache2/apache2.conf && echo " Header always unset Access-Control-Allow-Headers" >> /etc/apache2/apache2.conf && echo " Header always unset Access-Control-Allow-Credentials" >> /etc/apache2/apache2.conf && echo " Header always unset Access-Control-Max-Age" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo " # อนุญาต localhost (http/https ทุก port) และ https ทุกโดเมน" >> /etc/apache2/apache2.conf && echo " SetEnvIf Origin \"^https?://(localhost|127\\.0\\.0\\.1)(:[0-9]+)?\$\" CORS_ORIGIN=\$0" >> /etc/apache2/apache2.conf && echo " SetEnvIf Origin \"^https://.+\$\" CORS_ORIGIN=\$0" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo " # ตั้งค่า CORS headers" >> /etc/apache2/apache2.conf && echo " Header always set Access-Control-Allow-Origin \"%{CORS_ORIGIN}e\" env=CORS_ORIGIN" >> /etc/apache2/apache2.conf && echo " Header always set Access-Control-Allow-Methods \"GET, POST, PUT, DELETE, OPTIONS, PATCH\"" >> /etc/apache2/apache2.conf && echo " Header always set Access-Control-Allow-Headers \"Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-Token\"" >> /etc/apache2/apache2.conf && echo " Header always set Access-Control-Allow-Credentials \"true\"" >> /etc/apache2/apache2.conf && echo " Header always set Access-Control-Max-Age \"3600\"" >> /etc/apache2/apache2.conf && echo "</IfModule>" >> /etc/apache2/apache2.conf && echo "" >> /etc/apache2/apache2.conf && echo "# จัดการ OPTIONS preflight request" >> /etc/apache2/apache2.conf && echo "<IfModule mod_rewrite.c>" >> /etc/apache2/apache2.conf && echo " RewriteEngine On" >> /etc/apache2/apache2.conf && echo " RewriteCond %{REQUEST_METHOD} OPTIONS" >> /etc/apache2/apache2.conf && echo " RewriteRule .* - [R=200,L]" >> /etc/apache2/apache2.conf && echo "</IfModule>" >> /etc/apache2/apache2.conf # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c a2enmod headers rewrite expires deflate ssl setenvif # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c mkdir -p /var/log/php && chown www-data:www-data /var/log/php # buildkit
EXPOSE [80/tcp]
STOPSIGNAL SIGWINCH
ENTRYPOINT ["docker-php-entrypoint"]
CMD ["apache2-foreground"]
Details
Container
2025-11-06 10:28:19 +07:00
1
OCI / Docker
linux/amd64
199 MiB
Versions (14) View all
8.1.33-cron-sis 2025-11-07
8.1.32 2025-11-06
7.4.33gd 2025-11-02
7.4.33up 2025-10-24
8.1.33cron 2025-08-06