File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:3.10 as builder
2
2
3
- ARG PHP_VERSION=7.3.12
3
+ ARG PHP_VERSION=7.4.0
4
4
ARG COMPOSER_VERSION=1.9.1
5
5
6
6
RUN set -ex \
@@ -12,8 +12,8 @@ RUN set -ex \
12
12
&& wget -O php.tar.xz.asc https://secure.php.net/get/php-$PHP_VERSION.tar.xz.asc/from/this/mirror \
13
13
&& export GNUPGHOME="$(mktemp -d)" ; \
14
14
for key in \
15
- CBAF69F173A0FEA4B537F470D66C9593118BCCB6 \
16
- F38252826ACD957EF380D39F2F7956BC5DA04B5D \
15
+ 42670A7FE4D0441C8E4632349E4FDC074A4EF02D \
16
+ 5A52880781F755608BF815FC910DEB46F53EA312 \
17
17
; do \
18
18
gpg --batch --keyserver ha.pool.sks-keyservers.net --keyserver-options timeout=10 --recv-keys "$key" || \
19
19
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --keyserver-options timeout=10 --recv-keys "$key" || \
@@ -37,6 +37,8 @@ RUN set -xe \
37
37
libedit-dev \
38
38
openssl-dev \
39
39
libsodium-dev \
40
+ linux-headers \
41
+ oniguruma-dev \
40
42
libxml2-dev \
41
43
sqlite-dev \
42
44
\
@@ -66,6 +68,7 @@ RUN set -xe \
66
68
--with-libedit \
67
69
--with-openssl \
68
70
--with-zlib \
71
+ --with-pear \
69
72
--enable-fpm \
70
73
--with-fpm-user=www-data \
71
74
--with-fpm-group=www-data \
@@ -279,6 +282,7 @@ RUN docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) xmlrpc \
279
282
# xsl
280
283
RUN apk add --no-cache \
281
284
libxslt-dev \
285
+ libgcrypt-dev \
282
286
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) xsl \
283
287
&& (rm -rf /usr/local/lib/php/test/xsl || true) \
284
288
&& (rm -rf /usr/local/lib/php/doc/xsl || true)
You can’t perform that action at this time.
0 commit comments