2020-08-18 07:12:07 +02:00
{ { include "version-id" -} }
FROM {{ env.from }}
2016-03-18 18:51:01 +01:00
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)
Adjust PHPIZE_DEPS logic slightly for better cross-environment consistency (and to allow for folks to set "PHPIZE_DEPS=" in order to disable the additional behavior)
Full diff from before this change, to show the impact of this commit slightly more clearly:
```diff
diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template
index c3c3d36..60491a0 100644
--- a/Dockerfile-alpine.template
+++ b/Dockerfile-alpine.template
@@ -1,7 +1,7 @@
FROM alpine:3.3
-# phpize deps
-RUN apk add --no-cache --virtual .phpize-deps \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -10,8 +10,6 @@ RUN apk add --no-cache --virtual .phpize-deps \
make \
pkgconf \
re2c
-
-# persistent / runtime deps
RUN apk add --no-cache --virtual .persistent-deps \
ca-certificates \
curl
@@ -39,6 +37,7 @@ ENV PHP_SHA256 %%PHP_SHA256%%
RUN set -xe \
&& apk add --no-cache --virtual .build-deps \
+ $PHPIZE_DEPS \
curl-dev \
gnupg \
libedit-dev \
diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template
index a95b582..397eee5 100644
--- a/Dockerfile-debian.template
+++ b/Dockerfile-debian.template
@@ -1,7 +1,7 @@
FROM debian:jessie
-# phpize deps
-RUN apt-get update && apt-get install -y \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -9,11 +9,9 @@ RUN apt-get update && apt-get install -y \
libc-dev \
make \
pkg-config \
- re2c \
- --no-install-recommends && rm -r /var/lib/apt/lists/*
-
-# persistent / runtime deps
+ re2c
RUN apt-get update && apt-get install -y \
+ $PHPIZE_DEPS \
ca-certificates \
curl \
libedit2 \
diff --git a/docker-php-ext-install b/docker-php-ext-install
index 67180a8..eb2380a 100755
--- a/docker-php-ext-install
+++ b/docker-php-ext-install
@@ -55,6 +55,10 @@ if [ -z "$exts" ]; then
exit 1
fi
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS
+fi
+
for ext in $exts; do
(
cd "$ext"
@@ -69,3 +73,7 @@ for ext in $exts; do
make -j"$j" clean
)
done
+
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk del .phpize-deps
+fi
```
2016-05-23 23:25:24 +02:00
ENV PHPIZE_DEPS \
2016-03-18 18:51:01 +01:00
autoconf \
2017-05-10 20:14:13 +02:00
dpkg-dev \
2016-03-18 18:51:01 +01:00
file \
g++ \
gcc \
libc-dev \
make \
pkg-config \
Adjust PHPIZE_DEPS logic slightly for better cross-environment consistency (and to allow for folks to set "PHPIZE_DEPS=" in order to disable the additional behavior)
Full diff from before this change, to show the impact of this commit slightly more clearly:
```diff
diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template
index c3c3d36..60491a0 100644
--- a/Dockerfile-alpine.template
+++ b/Dockerfile-alpine.template
@@ -1,7 +1,7 @@
FROM alpine:3.3
-# phpize deps
-RUN apk add --no-cache --virtual .phpize-deps \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -10,8 +10,6 @@ RUN apk add --no-cache --virtual .phpize-deps \
make \
pkgconf \
re2c
-
-# persistent / runtime deps
RUN apk add --no-cache --virtual .persistent-deps \
ca-certificates \
curl
@@ -39,6 +37,7 @@ ENV PHP_SHA256 %%PHP_SHA256%%
RUN set -xe \
&& apk add --no-cache --virtual .build-deps \
+ $PHPIZE_DEPS \
curl-dev \
gnupg \
libedit-dev \
diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template
index a95b582..397eee5 100644
--- a/Dockerfile-debian.template
+++ b/Dockerfile-debian.template
@@ -1,7 +1,7 @@
FROM debian:jessie
-# phpize deps
-RUN apt-get update && apt-get install -y \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -9,11 +9,9 @@ RUN apt-get update && apt-get install -y \
libc-dev \
make \
pkg-config \
- re2c \
- --no-install-recommends && rm -r /var/lib/apt/lists/*
-
-# persistent / runtime deps
+ re2c
RUN apt-get update && apt-get install -y \
+ $PHPIZE_DEPS \
ca-certificates \
curl \
libedit2 \
diff --git a/docker-php-ext-install b/docker-php-ext-install
index 67180a8..eb2380a 100755
--- a/docker-php-ext-install
+++ b/docker-php-ext-install
@@ -55,6 +55,10 @@ if [ -z "$exts" ]; then
exit 1
fi
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS
+fi
+
for ext in $exts; do
(
cd "$ext"
@@ -69,3 +73,7 @@ for ext in $exts; do
make -j"$j" clean
)
done
+
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk del .phpize-deps
+fi
```
2016-05-23 23:25:24 +02:00
re2c
2018-03-21 19:23:32 +01:00
# persistent / runtime deps
2019-06-17 21:21:55 +02:00
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
Adjust PHPIZE_DEPS logic slightly for better cross-environment consistency (and to allow for folks to set "PHPIZE_DEPS=" in order to disable the additional behavior)
Full diff from before this change, to show the impact of this commit slightly more clearly:
```diff
diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template
index c3c3d36..60491a0 100644
--- a/Dockerfile-alpine.template
+++ b/Dockerfile-alpine.template
@@ -1,7 +1,7 @@
FROM alpine:3.3
-# phpize deps
-RUN apk add --no-cache --virtual .phpize-deps \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -10,8 +10,6 @@ RUN apk add --no-cache --virtual .phpize-deps \
make \
pkgconf \
re2c
-
-# persistent / runtime deps
RUN apk add --no-cache --virtual .persistent-deps \
ca-certificates \
curl
@@ -39,6 +37,7 @@ ENV PHP_SHA256 %%PHP_SHA256%%
RUN set -xe \
&& apk add --no-cache --virtual .build-deps \
+ $PHPIZE_DEPS \
curl-dev \
gnupg \
libedit-dev \
diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template
index a95b582..397eee5 100644
--- a/Dockerfile-debian.template
+++ b/Dockerfile-debian.template
@@ -1,7 +1,7 @@
FROM debian:jessie
-# phpize deps
-RUN apt-get update && apt-get install -y \
+# persistent / runtime deps
+ENV PHPIZE_DEPS \
autoconf \
file \
g++ \
@@ -9,11 +9,9 @@ RUN apt-get update && apt-get install -y \
libc-dev \
make \
pkg-config \
- re2c \
- --no-install-recommends && rm -r /var/lib/apt/lists/*
-
-# persistent / runtime deps
+ re2c
RUN apt-get update && apt-get install -y \
+ $PHPIZE_DEPS \
ca-certificates \
curl \
libedit2 \
diff --git a/docker-php-ext-install b/docker-php-ext-install
index 67180a8..eb2380a 100755
--- a/docker-php-ext-install
+++ b/docker-php-ext-install
@@ -55,6 +55,10 @@ if [ -z "$exts" ]; then
exit 1
fi
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS
+fi
+
for ext in $exts; do
(
cd "$ext"
@@ -69,3 +73,7 @@ for ext in $exts; do
make -j"$j" clean
)
done
+
+if [ -e /lib/apk/db/installed ] && [ -n "$PHPIZE_DEPS" ]; then
+ apk del .phpize-deps
+fi
```
2016-05-23 23:25:24 +02:00
$PHPIZE_DEPS \
2016-03-18 18:51:01 +01:00
ca-certificates \
curl \
2016-07-13 02:12:43 +02:00
xz-utils \
2019-06-17 21:21:55 +02:00
; \
rm -rf /var/lib/apt/lists/*
2016-03-18 18:51:01 +01:00
ENV PHP_INI_DIR /usr/local/etc/php
2019-01-31 23:45:15 +01:00
RUN set -eux; \
mkdir -p " $PHP_INI_DIR /conf.d " ; \
# allow running as an arbitrary user (https://github.com/docker-library/php/issues/743)
[ ! -d /var/www/html ] ; \
mkdir -p /var/www/html; \
chown www-data:www-data /var/www/html; \
chmod 777 /var/www/html
2020-08-18 07:12:07 +02:00
{ {
if env.variantBlock1 != "" then
"\n" + env.variantBlock1 + "\n"
else "" end
} }
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)
# https://github.com/docker-library/php/issues/272
2019-10-21 19:36:14 +02:00
# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
2019-10-16 22:07:03 +02:00
ENV PHP_CFLAGS = "-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
2016-12-13 00:16:09 +01:00
ENV PHP_CPPFLAGS = " $PHP_CFLAGS "
2020-04-17 05:26:34 +02:00
ENV PHP_LDFLAGS = "-Wl,-O1 -pie"
2016-12-02 01:52:07 +01:00
2020-08-18 07:12:07 +02:00
ENV GPG_KEYS { { .gpgKeys } }
2016-03-18 18:51:01 +01:00
2020-08-18 07:12:07 +02:00
ENV PHP_VERSION { { .version } }
ENV PHP_URL = "{{ .url }}" PHP_ASC_URL = "{{ .ascUrl // " " }}"
2020-10-29 18:27:05 +01:00
ENV PHP_SHA256 = "{{ .sha256 // " " }}"
2016-03-18 18:51:01 +01:00
2019-06-24 23:55:17 +02:00
RUN set -eux; \
2016-10-15 01:47:57 +02:00
\
2019-06-24 23:55:17 +02:00
savedAptMark = " $( apt-mark showmanual) " ; \
apt-get update; \
apt-get install -y --no-install-recommends gnupg dirmngr; \
rm -rf /var/lib/apt/lists/*; \
2016-10-15 01:47:57 +02:00
\
mkdir -p /usr/src; \
cd /usr/src; \
\
2019-06-17 21:21:55 +02:00
curl -fsSL -o php.tar.xz " $PHP_URL " ; \
2016-10-15 01:47:57 +02:00
\
if [ -n " $PHP_SHA256 " ] ; then \
echo " $PHP_SHA256 *php.tar.xz " | sha256sum -c -; \
fi ; \
\
if [ -n " $PHP_ASC_URL " ] ; then \
2019-06-17 21:21:55 +02:00
curl -fsSL -o php.tar.xz.asc " $PHP_ASC_URL " ; \
2016-10-15 01:47:57 +02:00
export GNUPGHOME = " $( mktemp -d) " ; \
for key in $GPG_KEYS ; do \
2018-11-14 21:44:19 +01:00
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys " $key " ; \
2016-10-15 01:47:57 +02:00
done ; \
gpg --batch --verify php.tar.xz.asc php.tar.xz; \
2019-06-24 23:55:17 +02:00
gpgconf --kill all; \
2017-06-09 22:54:54 +02:00
rm -rf " $GNUPGHOME " ; \
2016-10-15 01:47:57 +02:00
fi ; \
\
2019-06-24 23:55:17 +02:00
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark > /dev/null; \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant= false
2016-07-13 02:12:43 +02:00
COPY docker-php-source /usr/local/bin/
2018-01-03 19:55:13 +01:00
RUN set -eux; \
\
savedAptMark = " $( apt-mark showmanual) " ; \
2020-08-18 07:12:07 +02:00
{ {
# stretch needs to pull argon2 from buster
if env.suite = = "stretch" then (
-} }
2019-06-27 23:04:23 +02:00
sed -e 's/stretch/buster/g' /etc/apt/sources.list > /etc/apt/sources.list.d/buster.list; \
{ \
echo 'Package: *' ; \
2020-06-22 20:00:40 +02:00
echo 'Pin: release n=buster*' ; \
2019-06-27 23:04:23 +02:00
echo 'Pin-Priority: -10' ; \
echo; \
echo 'Package: libargon2*' ; \
2020-06-22 20:00:40 +02:00
echo 'Pin: release n=buster*' ; \
2019-06-27 23:04:23 +02:00
echo 'Pin-Priority: 990' ; \
} > /etc/apt/preferences.d/argon2-buster; \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2018-01-03 19:55:13 +01:00
apt-get update; \
apt-get install -y --no-install-recommends \
2019-06-27 23:04:23 +02:00
libargon2-dev \
2016-03-18 18:51:01 +01:00
libcurl4-openssl-dev \
libedit-dev \
2020-08-18 07:12:07 +02:00
{ {
# oniguruma is part of mbstring in php 7.4+
if ( .version | version_id) >= ( "7.4" | version_id) then (
-} }
2019-06-14 23:02:52 +02:00
libonig-dev \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
{ { if ( .version | version_id) >= ( "7.2" | version_id) then ( -} }
2018-02-06 01:06:59 +01:00
libsodium-dev \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2016-03-18 18:51:01 +01:00
libsqlite3-dev \
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:03 +02:00
\
2018-01-03 19:55:13 +01:00
export \
CFLAGS = " $PHP_CFLAGS " \
2016-12-13 00:16:09 +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 " \
2016-03-18 18:51:01 +01:00
--with-config-file-path= " $PHP_INI_DIR " \
--with-config-file-scan-dir= " $PHP_INI_DIR /conf.d " \
2016-08-09 18:26:03 +02:00
\
2020-04-26 00:16:34 +02:00
# make sure invalid --configure-flags are fatal errors instead of just warnings
2018-04-30 22:06:26 +02:00
--enable-option-checking= fatal \
\
2018-04-19 23:15:39 +02:00
# https://github.com/docker-library/php/issues/439
2018-04-26 22:45:14 +02:00
--with-mhash \
2018-04-19 23:15:39 +02:00
\
2020-11-05 02:22:43 +01:00
# https://github.com/docker-library/php/issues/822
--with-pic \
\
2016-08-09 09:45:09 +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-08-09 18:26:03 +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 \
# --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 \
2017-11-15 01:36:57 +01:00
# https://wiki.php.net/rfc/argon2_password_hash (7.2+)
--with-password-argon2 \
2020-08-18 07:12:07 +02:00
{ { if ( .version | version_id) >= ( "7.2" | version_id) then ( -} }
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 \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2019-09-02 23:19:50 +02:00
# always build against system sqlite3 (https://github.com/php/php-src/commit/6083a387a81dbbd66d6316a3a12a63f06d5f7109)
--with-pdo-sqlite= /usr \
--with-sqlite3= /usr \
2016-08-09 18:26:03 +02:00
\
2016-03-18 18:51:01 +01:00
--with-curl \
--with-libedit \
--with-openssl \
--with-zlib \
2016-08-09 18:26:03 +02:00
\
2020-11-24 15:31:47 +01:00
{ { if ( .version | version_id) | . >= ( "7.4" | version_id) then ( -} }
2020-08-18 07:12:07 +02:00
# in PHP 7.4+, the pecl/pear installers are officially deprecated (requiring an explicit "--with-pear")
2019-06-26 01:32:58 +02:00
--with-pear \
\
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2017-11-29 01:24:49 +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) " ; \
2019-02-15 01:30:31 +01:00
find -type f -name '*.a' -delete; \
2018-01-03 19:55:13 +01:00
make install; \
find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; \
make clean; \
2018-08-28 00:26:42 +02:00
\
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
cp -v php.ini-* " $PHP_INI_DIR / " ; \
\
2018-01-03 19:55:13 +01:00
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:03 +02:00
\
2019-06-14 23:02:52 +02:00
# update pecl channel definitions https://github.com/docker-library/php/issues/443
2018-01-03 19:55:13 +01:00
pecl update-channels; \
2019-06-14 23:02:52 +02:00
rm -rf /tmp/pear ~/.pearrc; \
2020-08-18 07:12:07 +02:00
\
2019-06-14 23:02:52 +02:00
# smoke test
php --version
2016-03-18 18:51:01 +01:00
2016-12-10 18:20:49 +01:00
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/
2016-03-18 18:51:01 +01:00
2020-08-18 07:12:07 +02:00
{ { if ( .version | version_id) >= ( "7.2" | version_id) then ( -} }
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
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
{ {
# https://github.com/docker-library/php/issues/865
# https://bugs.php.net/bug.php?id=76324
# https://github.com/php/php-src/pull/3632
# https://github.com/php/php-src/commit/2d03197749696ac3f8effba6b7977b0d8729fef3
if env.suite != "stretch" and ( .version | version_id) < ( "7.4" | version_id) then (
-} }
2019-07-19 23:20:04 +02:00
# temporary "freetype-config" workaround for https://github.com/docker-library/php/issues/865 (https://bugs.php.net/bug.php?id=76324)
RUN { echo '#!/bin/sh' ; echo 'exec pkg-config "$@" freetype2' ; } > /usr/local/bin/freetype-config && chmod +x /usr/local/bin/freetype-config
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2016-12-10 18:20:49 +01:00
ENTRYPOINT [ "docker-php-entrypoint" ]
2020-08-18 07:12:07 +02:00
{ {
if env.variantBlock2 != "" then
env.variantBlock2 + "\n"
else "" end
+ "CMD " + env.cmd
} }