2016-08-01 18:55:58 +02:00
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
2014-11-07 01:41:50 +01:00
FROM debian:jessie
2017-12-14 01:14:37 +01:00
# prevent Debian's PHP packages from being installed
2017-12-14 02:32:36 +01:00
# https://github.com/docker-library/php/pull/542
2017-12-14 01:14:37 +01:00
RUN set -eux; \
{ \
echo 'Package: php*' ; \
2017-12-18 23:21:03 +01:00
echo 'Pin: release *' ; \
2017-12-14 01:14:37 +01:00
echo 'Pin-Priority: -1' ; \
} > /etc/apt/preferences.d/no-debian-php
2018-03-21 19:23:32 +01:00
# dependencies required for running "phpize"
# (see persistent deps below)
2016-05-23 23:29:30 +02:00
ENV PHPIZE_DEPS \
2016-03-18 18:52:43 +01:00
autoconf \
2017-05-10 20:14:13 +02:00
dpkg-dev \
2016-03-18 18:52:43 +01:00
file \
g++ \
gcc \
libc-dev \
make \
pkg-config \
2016-05-23 23:29:30 +02:00
re2c
2018-03-21 19:23:32 +01:00
# persistent / runtime deps
2016-03-18 18:52:43 +01:00
RUN apt-get update && apt-get install -y \
2016-05-23 23:29:30 +02:00
$PHPIZE_DEPS \
2016-03-18 18:52:43 +01:00
ca-certificates \
curl \
2016-07-13 02:15:01 +02:00
xz-utils \
2016-03-18 18:52:43 +01:00
--no-install-recommends && rm -r /var/lib/apt/lists/*
2014-11-07 01:41:50 +01:00
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>##
2016-12-06 00:33:53 +01:00
# 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
2016-12-13 00:21:44 +01:00
ENV PHP_CFLAGS = "-fstack-protector-strong -fpic -fpie -O2"
ENV PHP_CPPFLAGS = " $PHP_CFLAGS "
ENV PHP_LDFLAGS = "-Wl,-O1 -Wl,--hash-style=both -pie"
2016-12-02 01:52:07 +01:00
2015-08-07 21:01:25 +02:00
ENV GPG_KEYS 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3
2014-11-07 01:41:50 +01:00
2018-03-31 20:46:09 +02:00
ENV PHP_VERSION 5.6.35
ENV PHP_URL = "https://secure.php.net/get/php-5.6.35.tar.xz/from/this/mirror" PHP_ASC_URL = "https://secure.php.net/get/php-5.6.35.tar.xz.asc/from/this/mirror"
ENV PHP_SHA256 = "9985cb64cb8224c289effff5b34f670d14f838175f76daea0507d643eec650d2" PHP_MD5 = ""
2014-11-07 01:41:50 +01:00
2016-10-17 18:10:27 +02:00
RUN set -xe; \
\
fetchDeps = ' \
wget \
' ; \
2017-06-09 22:54:54 +02:00
if ! command -v gpg > /dev/null; then \
fetchDeps = " $fetchDeps \
dirmngr \
2017-11-01 21:52:53 +01:00
gnupg \
2017-06-09 22:54:54 +02:00
" ; \
fi ; \
2016-10-17 18:10:27 +02:00
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps ; \
rm -rf /var/lib/apt/lists/*; \
\
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; \
2017-06-09 22:54:54 +02:00
rm -rf " $GNUPGHOME " ; \
2016-10-17 18:10:27 +02:00
fi ; \
\
2017-06-09 22:54:54 +02:00
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant= false $fetchDeps
2016-07-13 02:15:01 +02:00
COPY docker-php-source /usr/local/bin/
2018-01-03 19:55:13 +01:00
RUN set -eux; \
\
savedAptMark = " $( apt-mark showmanual) " ; \
apt-get update; \
apt-get install -y --no-install-recommends \
2014-11-07 01:41:50 +01:00
libcurl4-openssl-dev \
2016-03-18 18:52:43 +01:00
libedit-dev \
2015-04-18 04:48:36 +02:00
libsqlite3-dev \
2014-11-07 01:41:50 +01:00
libssl-dev \
libxml2-dev \
2017-06-09 22:54:54 +02:00
zlib1g-dev \
2018-01-03 19:55:13 +01:00
${ PHP_EXTRA_BUILD_DEPS :- } \
; \
rm -rf /var/lib/apt/lists/*; \
2016-08-09 18:26:58 +02:00
\
2018-01-03 19:55:13 +01:00
export \
CFLAGS = " $PHP_CFLAGS " \
2016-12-13 00:21:44 +01:00
CPPFLAGS = " $PHP_CPPFLAGS " \
LDFLAGS = " $PHP_LDFLAGS " \
2018-01-03 19:55:13 +01:00
; \
docker-php-source extract; \
cd /usr/src/php; \
gnuArch = " $( dpkg-architecture --query DEB_BUILD_GNU_TYPE) " ; \
debMultiarch = " $( dpkg-architecture --query DEB_BUILD_MULTIARCH) " ; \
2017-06-09 22:54:54 +02:00
# https://bugs.php.net/bug.php?id=74125
2018-01-03 19:55:13 +01:00
if [ ! -d /usr/include/curl ] ; then \
2017-06-09 22:54:54 +02:00
ln -sT " /usr/include/ $debMultiarch /curl " /usr/local/include/curl; \
2018-01-03 19:55:13 +01:00
fi ; \
./configure \
2017-05-10 20:14:13 +02:00
--build= " $gnuArch " \
2014-11-07 01:41:50 +01:00
--with-config-file-path= " $PHP_INI_DIR " \
--with-config-file-scan-dir= " $PHP_INI_DIR /conf.d " \
2016-08-09 18:26:58 +02:00
\
2014-11-07 01:41:50 +01:00
--disable-cgi \
2016-08-09 18:26:58 +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 \
2016-03-30 18:07:32 +02:00
# --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 \
2016-08-09 18:26:58 +02:00
# --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 \
\
2014-11-07 01:41:50 +01:00
--with-curl \
2016-03-18 18:52:43 +01:00
--with-libedit \
2014-11-07 01:41:50 +01:00
--with-openssl \
--with-zlib \
2016-08-09 18:26:58 +02:00
\
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-12 20:03:09 +02:00
--with-libdir= " lib/ $debMultiarch " \
2017-05-10 20:14:13 +02:00
\
2018-01-03 19:55:13 +01:00
${ PHP_EXTRA_CONFIGURE_ARGS :- } \
; \
make -j " $( nproc) " ; \
make install; \
find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; \
make clean; \
cd /; \
docker-php-source delete; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
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; \
2016-08-09 18:26:58 +02:00
\
2018-01-03 19:55:13 +01:00
php --version; \
2017-05-31 22:37:18 +02:00
\
# https://github.com/docker-library/php/issues/443
2018-01-03 19:55:13 +01:00
pecl update-channels; \
rm -rf /tmp/pear ~/.pearrc
2014-11-07 01:41:50 +01:00
2016-12-15 19:44:01 +01:00
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/
2014-11-07 01:41:50 +01:00
2016-12-15 19:44:01 +01:00
ENTRYPOINT [ "docker-php-entrypoint" ]
2014-11-07 01:41:50 +01:00
##<autogenerated>##
WORKDIR /var/www/html
2016-01-22 21:52:42 +01:00
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 \
2016-12-01 20:46:18 +01:00
# PHP 5.x doesn't use "include=" by default, so we'll create our own simple config that mimics PHP 7+ for consistency
2016-01-22 21:52:42 +01:00
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' ; \
2016-01-22 21:52:42 +01:00
} | tee php-fpm.d/zz-docker.conf
2014-11-07 01:41:50 +01:00
EXPOSE 9000
CMD [ "php-fpm" ]
##</autogenerated>##