| # debian.sh --arch 'amd64' out/ 'trixie' '@1760918400' | 
					
						
							| 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 	; 	apt-get dist-clean # 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; 	apt-get dist-clean; 		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.33 | 
					
						
							| ENV PHP_URL=https://www.php.net/distributions/php-8.1.33.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.1.33.tar.xz.asc | 
					
						
							| ENV PHP_SHA256=9db83bf4590375562bc1a10b353cccbcf9fcfc56c58b7c8fb814e6865bb928d1 | 
					
						
							| RUN /bin/sh -c set -eux; 		savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends gnupg; 	apt-get dist-clean; 		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; 		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"; 		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 -rt dpkg-query --search 		| awk 'sub(":$", "", $1) { print $1 }' 		| sort -u 		| xargs -r apt-mark manual 	; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	apt-get dist-clean; 		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"] | 
					
						
							| COPY contrib/docker/prod.php.ini /usr/local/etc/php/php.ini # buildkit | 
					
						
							| ENV COMPOSER_VERSION=2.4.3 COMPOSER_HOME=/var/www/.composer COMPOSER_MEMORY_LIMIT=-1 PATH=~/.composer/vendor/bin:./vendor/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | 
					
						
							| ARG DEBIAN_FRONTEND=noninteractive | 
					
						
							| WORKDIR /var/www/ | 
					
						
							| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl -o /tmp/composer-setup.php https://getcomposer.org/installer   && curl -o /tmp/composer-setup.sig https://composer.github.io/installer.sig   && php -r "if (hash('SHA384', file_get_contents('/tmp/composer-setup.php')) !== trim(file_get_contents('/tmp/composer-setup.sig'))) { unlink('/tmp/composer-setup.php'); echo 'Invalid installer' . PHP_EOL; exit(1); }"   && php /tmp/composer-setup.php --no-ansi --install-dir=/usr/local/bin --filename=composer --version=${COMPOSER_VERSION} && rm -rf /tmp/composer-setup.php   && apt-get update   && apt-get upgrade -y   && apt-get install -y --no-install-recommends unzip   && docker-php-source extract   && pecl install redis   && docker-php-ext-enable redis   && docker-php-ext-install -j$(nproc) bcmath pdo_mysql   && a2enmod rewrite remoteip   && {    echo RemoteIPHeader X-Real-IP ;    echo RemoteIPTrustedProxy 10.0.0.0/8 ;    echo RemoteIPTrustedProxy 172.16.0.0/12 ;    echo RemoteIPTrustedProxy 192.168.0.0/16 ;    echo SetEnvIf X-Forwarded-Proto "https" HTTPS=on ;  } > /etc/apache2/conf-available/remoteip.conf   && a2enconf remoteip   && echo "ServerSignature Off" >> /etc/apache2/apache2.conf   && echo "ServerTokens Prod" >> /etc/apache2/apache2.conf   && docker-php-source delete   && apt-get autoremove --purge -y   && apt-get clean   && rm -rf /var/cache/apt   && rm -rf /var/lib/apt/lists/ # buildkit | 
					
						
							| COPY . /var/www/ # buildkit | 
					
						
							| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c cp -r storage storage.skel   && composer install --prefer-dist --no-interaction --no-ansi --optimize-autoloader   && cp contrib/docker/prod.htaccess public/.htaccess   && rm -rf html && ln -s public html   && chown -R www-data:www-data /var/www   && chmod +x /var/www/contrib/docker/start.apache.sh # buildkit | 
					
						
							| VOLUME [/var/www/storage /var/www/bootstrap] | 
					
						
							| CMD ["/var/www/contrib/docker/start.apache.sh"] |