Skip to content

Commit

Permalink
Update to PHP 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
J0WI committed Nov 29, 2019
1 parent 0343ca5 commit 034c73f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Dockerfile-alpine.template
@@ -1,4 +1,4 @@
FROM php:7.2-%%VARIANT%%
FROM php:7.3-%%VARIANT%%

# docker-entrypoint.sh dependencies
RUN apk add --no-cache \
Expand All @@ -14,6 +14,7 @@ RUN set -ex; \
libpng-dev \
libwebp-dev \
libxpm-dev \
libzip-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr --with-png-dir=/usr --with-xpm-dir=/usr; \
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile-debian.template
@@ -1,4 +1,4 @@
FROM php:7.2-%%VARIANT%%
FROM php:7.3-%%VARIANT%%

# Install dependencies
RUN set -ex; \
Expand All @@ -13,6 +13,7 @@ RUN set -ex; \
libpng-dev \
libwebp-dev \
libxpm-dev \
libzip-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr --with-png-dir=/usr --with-xpm-dir=/usr; \
Expand Down
3 changes: 2 additions & 1 deletion apache/Dockerfile
@@ -1,4 +1,4 @@
FROM php:7.2-apache
FROM php:7.3-apache

# Install dependencies
RUN set -ex; \
Expand All @@ -13,6 +13,7 @@ RUN set -ex; \
libpng-dev \
libwebp-dev \
libxpm-dev \
libzip-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr --with-png-dir=/usr --with-xpm-dir=/usr; \
Expand Down
3 changes: 2 additions & 1 deletion fpm-alpine/Dockerfile
@@ -1,4 +1,4 @@
FROM php:7.2-fpm-alpine
FROM php:7.3-fpm-alpine

# docker-entrypoint.sh dependencies
RUN apk add --no-cache \
Expand All @@ -14,6 +14,7 @@ RUN set -ex; \
libpng-dev \
libwebp-dev \
libxpm-dev \
libzip-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr --with-png-dir=/usr --with-xpm-dir=/usr; \
Expand Down
3 changes: 2 additions & 1 deletion fpm/Dockerfile
@@ -1,4 +1,4 @@
FROM php:7.2-fpm
FROM php:7.3-fpm

# Install dependencies
RUN set -ex; \
Expand All @@ -13,6 +13,7 @@ RUN set -ex; \
libpng-dev \
libwebp-dev \
libxpm-dev \
libzip-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr --with-png-dir=/usr --with-xpm-dir=/usr; \
Expand Down

0 comments on commit 034c73f

Please sign in to comment.