2017-06-09 22:54:54 +02:00
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM alpine:3.6
2018-03-21 19:23:32 +01:00
# dependencies required for running "phpize"
# these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed)
2017-06-09 22:54:54 +02:00
ENV PHPIZE_DEPS \
autoconf \
dpkg-dev dpkg \
file \
g++ \
gcc \
libc-dev \
make \
pkgconf \
re2c
2018-03-21 19:23:32 +01:00
# persistent / runtime deps
2017-06-09 22:54:54 +02:00
RUN apk add --no-cache --virtual .persistent-deps \
ca-certificates \
curl \
tar \
2017-09-26 20:21:53 +02:00
xz \
# https://github.com/docker-library/php/issues/494
libressl
2017-06-09 22:54:54 +02:00
# ensure www-data user exists
RUN set -x \
&& addgroup -g 82 -S www-data \
&& adduser -u 82 -D -S -G www-data www-data
# 82 is the standard uid/gid for "www-data" in Alpine
# http://git.alpinelinux.org/cgit/aports/tree/main/apache2/apache2.pre-install?h=v3.3.2
# http://git.alpinelinux.org/cgit/aports/tree/main/lighttpd/lighttpd.pre-install?h=v3.3.2
# http://git.alpinelinux.org/cgit/aports/tree/main/nginx-initscripts/nginx-initscripts.pre-install?h=v3.3.2
ENV PHP_INI_DIR /usr/local/etc/php
RUN mkdir -p $PHP_INI_DIR /conf.d
##<autogenerated>##
ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user= www-data --with-fpm-group= www-data
##</autogenerated>##
# Apply stack smash protection to functions using local buffers and alloca()
# Make PHP's main executable position-independent (improves ASLR security mechanism, and has no performance impact on x86_64)
# Enable optimization (-O2)
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
ENV PHP_CFLAGS = "-fstack-protector-strong -fpic -fpie -O2"
ENV PHP_CPPFLAGS = " $PHP_CFLAGS "
ENV PHP_LDFLAGS = "-Wl,-O1 -Wl,--hash-style=both -pie"
ENV GPG_KEYS 1729F83938DA44E27BA0F4D3DBDB397470D12172 B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F
2018-03-31 20:46:09 +02:00
ENV PHP_VERSION 7.2.4
ENV PHP_URL = "https://secure.php.net/get/php-7.2.4.tar.xz/from/this/mirror" PHP_ASC_URL = "https://secure.php.net/get/php-7.2.4.tar.xz.asc/from/this/mirror"
ENV PHP_SHA256 = "7916b1bd148ddfd46d7f8f9a517d4b09cd8a8ad9248734e7c8dd91ef17057a88" PHP_MD5 = ""
2017-06-09 22:54:54 +02:00
RUN set -xe; \
\
apk add --no-cache --virtual .fetch-deps \
gnupg \
; \
\
mkdir -p /usr/src; \
cd /usr/src; \
\
wget -O php.tar.xz " $PHP_URL " ; \
\
if [ -n " $PHP_SHA256 " ] ; then \
echo " $PHP_SHA256 *php.tar.xz " | sha256sum -c -; \
fi ; \
if [ -n " $PHP_MD5 " ] ; then \
echo " $PHP_MD5 *php.tar.xz " | md5sum -c -; \
fi ; \
\
if [ -n " $PHP_ASC_URL " ] ; then \
wget -O php.tar.xz.asc " $PHP_ASC_URL " ; \
export GNUPGHOME = " $( mktemp -d) " ; \
for key in $GPG_KEYS ; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys " $key " ; \
done ; \
gpg --batch --verify php.tar.xz.asc php.tar.xz; \
rm -rf " $GNUPGHOME " ; \
fi ; \
\
apk del .fetch-deps
COPY docker-php-source /usr/local/bin/
RUN set -xe \
&& apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
coreutils \
curl-dev \
libedit-dev \
2017-09-22 23:55:27 +02:00
libressl-dev \
2018-02-06 01:06:59 +01:00
libsodium-dev \
2017-06-09 22:54:54 +02:00
libxml2-dev \
sqlite-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) " \
&& ./configure \
--build= " $gnuArch " \
--with-config-file-path= " $PHP_INI_DIR " \
--with-config-file-scan-dir= " $PHP_INI_DIR /conf.d " \
\
--disable-cgi \
\
2018-04-19 23:15:39 +02:00
# https://github.com/docker-library/php/issues/439
--disable-hash \
\
2017-06-09 22:54:54 +02:00
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
--enable-ftp \
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
--enable-mbstring \
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
--enable-mysqlnd \
2018-02-06 01:06:59 +01:00
# https://wiki.php.net/rfc/libsodium
2018-03-21 19:07:41 +01:00
--with-sodium= shared \
2017-06-09 22:54:54 +02:00
\
--with-curl \
--with-libedit \
--with-openssl \
--with-zlib \
\
2017-11-29 01:26:39 +01:00
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$( test " $gnuArch " = 's390x-linux-gnu' && echo '--without-pcre-jit' ) \
2017-06-09 22:54:54 +02:00
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j " $( nproc) " \
&& make install \
&& { find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; } \
&& make clean \
&& cd / \
&& docker-php-source delete \
\
&& runDeps = " $( \
2017-09-22 23:18:14 +02:00
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \
| tr ',' '\n' \
2017-06-09 22:54:54 +02:00
| sort -u \
2017-09-22 23:18:14 +02:00
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
2017-06-09 22:54:54 +02:00
) " \
&& apk add --no-cache --virtual .php-rundeps $runDeps \
\
&& apk del .build-deps \
\
# https://github.com/docker-library/php/issues/443
&& pecl update-channels \
&& rm -rf /tmp/pear ~/.pearrc
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/
2018-03-21 19:07:41 +01:00
# sodium was built as a shared module (so that it can be replaced later if so desired), so let's enable it too (https://github.com/docker-library/php/issues/598)
RUN docker-php-ext-enable sodium
2017-06-09 22:54:54 +02:00
ENTRYPOINT [ "docker-php-entrypoint" ]
##<autogenerated>##
WORKDIR /var/www/html
RUN set -ex \
&& cd /usr/local/etc \
&& if [ -d php-fpm.d ] ; then \
# for some reason, upstream's php-fpm.conf.default has "include=NONE/etc/php-fpm.d/*.conf"
sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; \
cp php-fpm.d/www.conf.default php-fpm.d/www.conf; \
else \
# PHP 5.x doesn't use "include=" by default, so we'll create our own simple config that mimics PHP 7+ for consistency
mkdir php-fpm.d; \
cp php-fpm.conf.default php-fpm.d/www.conf; \
{ \
echo '[global]' ; \
echo 'include=etc/php-fpm.d/*.conf' ; \
} | tee php-fpm.conf; \
fi \
&& { \
echo '[global]' ; \
echo 'error_log = /proc/self/fd/2' ; \
echo; \
echo '[www]' ; \
echo '; if we send this to /proc/self/fd/1, it never appears' ; \
echo 'access.log = /proc/self/fd/2' ; \
echo; \
echo 'clear_env = no' ; \
echo; \
echo '; Ensure worker stdout and stderr are sent to the main error log.' ; \
echo 'catch_workers_output = yes' ; \
} | tee php-fpm.d/docker.conf \
&& { \
echo '[global]' ; \
echo 'daemonize = no' ; \
echo; \
echo '[www]' ; \
2018-01-13 20:56:46 +01:00
echo 'listen = 9000' ; \
2017-06-09 22:54:54 +02:00
} | tee php-fpm.d/zz-docker.conf
EXPOSE 9000
CMD [ "php-fpm" ]
##</autogenerated>##