summaryrefslogtreecommitdiffstats
path: root/15.0
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2019-01-14 18:48:11 +0100
committerGitHub <noreply@github.com>2019-01-14 18:48:11 +0100
commite8e33356ff876b9080d3322130c4b73ab2448655 (patch)
treefe0e39b08255a36b0feb7d6c81c2b88e0e81f03e /15.0
parent57b9193096b8404e7982928c977e1f0bf32f3d51 (diff)
parent46c774cd8ccc83602116519a19526e479b3cf2a6 (diff)
Use PHP 7.3 for NC 15
Diffstat (limited to '15.0')
-rw-r--r--15.0/apache/Dockerfile8
-rw-r--r--15.0/fpm-alpine/Dockerfile8
-rw-r--r--15.0/fpm/Dockerfile8
3 files changed, 15 insertions, 9 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; \
\
diff --git a/15.0/fpm-alpine/Dockerfile b/15.0/fpm-alpine/Dockerfile
index f71d5f9e..cdc04ec2 100644
--- a/15.0/fpm-alpine/Dockerfile
+++ b/15.0/fpm-alpine/Dockerfile
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
-FROM php:7.2-fpm-alpine3.8
+FROM php:7.3-fpm-alpine3.8
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@@ -20,11 +20,13 @@ RUN set -ex; \
autoconf \
freetype-dev \
icu-dev \
+ libevent-dev \
libjpeg-turbo-dev \
libmcrypt-dev \
libpng-dev \
libmemcached-dev \
libxml2-dev \
+ libzip-dev \
openldap-dev \
pcre-dev \
postgresql-dev \
@@ -46,8 +48,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; \
\
diff --git a/15.0/fpm/Dockerfile b/15.0/fpm/Dockerfile
index c8dc904f..59877ab2 100644
--- a/15.0/fpm/Dockerfile
+++ b/15.0/fpm/Dockerfile
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
-FROM php:7.2-fpm-stretch
+FROM php:7.3-fpm-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; \
\