From 49e28e8c8659f7a2273a087bc004041d52bfa838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 3 Dec 2021 10:37:02 +0100 Subject: [PATCH] feat: upgrade to PHP 8.1 (#193) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e849bd..e244d3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact -ARG PHP_VERSION=8.0 +ARG PHP_VERSION=8.1 ARG CADDY_VERSION=2 # "php" stage @@ -24,7 +24,7 @@ RUN apk add --no-cache \ # see https://github.com/docker-library/php/issues/240#issuecomment-763112749 ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so -ARG APCU_VERSION=5.1.20 +ARG APCU_VERSION=5.1.21 RUN set -eux; \ apk add --no-cache --virtual .build-deps \ $PHPIZE_DEPS \