2020-08-18 07:12:07 +02:00
{ { include "version-id" -} }
FROM {{ env.from }}
2016-03-18 18:51:01 +01:00
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)
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 \
autoconf \
2017-05-10 20:14:13 +02:00
dpkg-dev dpkg \
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
file \
g++ \
gcc \
libc-dev \
make \
2017-05-12 22:03:16 +02:00
pkgconf \
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-03-05 01:41:05 +01:00
RUN apk add --no-cache \
2016-03-18 18:51:01 +01:00
ca-certificates \
2016-07-13 02:12:43 +02:00
curl \
tar \
2017-09-26 20:21:53 +02:00
xz \
# https://github.com/docker-library/php/issues/494
2019-01-31 20:30:42 +01:00
openssl
2016-03-18 18:51:01 +01:00
# ensure www-data user exists
2019-06-24 23:55:17 +02:00
RUN set -eux; \
2019-06-17 21:21:55 +02:00
addgroup -g 82 -S www-data; \
adduser -u 82 -D -S -G www-data www-data
2016-03-18 18:51:01 +01:00
# 82 is the standard uid/gid for "www-data" in Alpine
2019-01-31 20:30:42 +01:00
# https://git.alpinelinux.org/aports/tree/main/apache2/apache2.pre-install?h=3.9-stable
# https://git.alpinelinux.org/aports/tree/main/lighttpd/lighttpd.pre-install?h=3.9-stable
# https://git.alpinelinux.org/aports/tree/main/nginx/nginx.pre-install?h=3.9-stable
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
apk add --no-cache --virtual .fetch-deps gnupg; \
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-03-05 01:41:05 +01:00
apk del --no-network .fetch-deps
2016-07-13 02:12:43 +02:00
COPY docker-php-source /usr/local/bin/
2019-06-24 23:55:17 +02:00
RUN set -eux; \
2019-06-17 21:21:55 +02:00
apk add --no-cache --virtual .build-deps \
2016-05-20 16:11:33 +02:00
$PHPIZE_DEPS \
2018-08-10 23:29:00 +02:00
argon2-dev \
2017-05-10 20:14:13 +02:00
coreutils \
2016-03-18 18:51:01 +01:00
curl-dev \
libedit-dev \
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
libsodium-dev \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2016-03-18 18:51:01 +01:00
libxml2-dev \
2020-08-18 07:12:07 +02:00
{ {
# https://github.com/docker-library/php/issues/888
if ( .version | version_id) >= ( "7.4" | version_id) then (
-} }
2019-09-12 00:06:59 +02:00
linux-headers \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
{ { if ( .version | version_id) >= ( "7.4" | version_id) then ( -} }
2019-06-14 23:02:52 +02:00
oniguruma-dev \
2020-08-18 07:12:07 +02:00
{ { ) else "" end -} }
2019-01-31 20:30:42 +01:00
openssl-dev \
2016-03-18 18:51:01 +01:00
sqlite-dev \
2019-06-17 21:21:55 +02:00
; \
2016-08-09 18:26:03 +02:00
\
2019-06-17 21:21:55 +02:00
export CFLAGS = " $PHP_CFLAGS " \
2016-12-13 00:16:09 +01:00
CPPFLAGS = " $PHP_CPPFLAGS " \
LDFLAGS = " $PHP_LDFLAGS " \
2019-06-17 21:21:55 +02:00
; \
docker-php-source extract; \
cd /usr/src/php; \
gnuArch = " $( dpkg-architecture --query DEB_BUILD_GNU_TYPE) " ; \
./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 \
2018-07-10 23:24:42 +02: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-08-18 07:12:07 +02:00
{ { if ( .version | version_id) | . >= ( "7.4" | version_id) and . < ( "8" | version_id) then ( -} }
# in PHP 7.4+, the pecl/pear installers are officially deprecated (requiring an explicit "--with-pear")
# ... and are removed in PHP 8+; see also https://github.com/docker-library/php/pull/847#issuecomment-505638229
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
2019-07-26 01:06:53 +02:00
$( test " $gnuArch " = 's390x-linux-musl' && echo '--without-pcre-jit' ) \
2017-05-10 20:14:13 +02:00
\
2019-06-24 23:55:17 +02:00
${ PHP_EXTRA_CONFIGURE_ARGS :- } \
2019-06-17 21:21:55 +02:00
; \
make -j " $( nproc) " ; \
find -type f -name '*.a' -delete; \
make install; \
2019-06-24 23:55:17 +02:00
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
2019-06-17 21:21:55 +02:00
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)
2019-06-17 21:21:55 +02:00
cp -v php.ini-* " $PHP_INI_DIR / " ; \
2018-08-28 00:26:42 +02:00
\
2019-06-17 21:21:55 +02:00
cd /; \
docker-php-source delete; \
2016-08-09 18:26:03 +02:00
\
2019-06-17 21:21:55 +02:00
runDeps = " $( \
2017-09-22 23:18:14 +02:00
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \
| tr ',' '\n' \
2016-03-18 18:51:01 +01:00
| sort -u \
2017-09-22 23:18:14 +02:00
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
2019-06-17 21:21:55 +02:00
) " ; \
apk add --no-cache $runDeps ; \
2016-08-09 18:26:03 +02:00
\
2019-06-17 21:21:55 +02:00
apk del --no-network .build-deps; \
2017-05-31 22:37:18 +02:00
\
2020-08-18 07:12:07 +02:00
{ { if ( .version | version_id) < ( "8" | version_id) then ( -} }
2019-06-14 23:02:52 +02:00
# update pecl channel definitions https://github.com/docker-library/php/issues/443
2019-06-17 21:21:55 +02:00
pecl update-channels; \
rm -rf /tmp/pear ~/.pearrc; \
2020-08-18 07:12:07 +02:00
\
{ { ) else "" end -} }
2019-06-14 23:02:52 +02:00
# smoke test
2019-06-17 21:21:55 +02:00
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 -} }
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
} }