summaryrefslogtreecommitdiffstats
path: root/15.0/apache/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '15.0/apache/Dockerfile')
-rw-r--r--15.0/apache/Dockerfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/15.0/apache/Dockerfile b/15.0/apache/Dockerfile
index 7c50375d..5fad6022 100644
--- a/15.0/apache/Dockerfile
+++ b/15.0/apache/Dockerfile
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
-FROM php:7.2-apache-stretch
+FROM php:7.3-apache-stretch
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@@ -24,6 +24,7 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends \
libcurl4-openssl-dev \
+ libevent-dev \
libfreetype6-dev \
libicu-dev \
libjpeg-dev \
@@ -34,6 +35,7 @@ RUN set -ex; \
libpq-dev \
libxml2-dev \
libmagickwand-dev \
+ libzip-dev \
; \
\
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
@@ -52,8 +54,8 @@ RUN set -ex; \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
- pecl install APCu-5.1.15; \
- pecl install memcached-3.0.4; \
+ pecl install APCu-5.1.16; \
+ pecl install memcached-3.1.3; \
pecl install redis-4.2.0; \
pecl install imagick-3.4.3; \
\