From ee002b96092d77625dbc46d580fd9cc4d62ce712 Mon Sep 17 00:00:00 2001 From: Luca Date: Sun, 25 Jun 2023 14:21:00 +0200 Subject: [PATCH] Fix deprecation error --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 57f96cd0..7ca2f867 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -38,7 +38,7 @@ COPY --from=themes /app/public/assets /app/public/assets/ RUN find /app/storage/ -type f -not -name VERSION -exec rm {} \; # Build the PHP/Nginx container -FROM php:8-fpm-alpine +FROM php:8.1-fpm-alpine WORKDIR /var/www RUN apk add --no-cache icu-dev nginx && \ docker-php-ext-install intl pdo_mysql && \