From f1350c83b7cc5dda88cc62ab4ee5ceb4c8b20671 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Sun, 31 Dec 2023 13:25:06 +0100 Subject: [PATCH] docker hub to PHP 8.3 --- .docker/release/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/release/Dockerfile b/.docker/release/Dockerfile index 04959872e..133389295 100644 --- a/.docker/release/Dockerfile +++ b/.docker/release/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 FROM alpine:3.15 AS builder -RUN apk add --no-cache php7 php7-json php-phar php-zip +RUN apk add --no-cache php83 php83-json php-phar php-zip RUN apk add --no-cache npm RUN npm install -g gulp yarn WORKDIR /source @@ -23,7 +23,7 @@ RUN set -eux; \ rm -v /snappymail/README.md /snappymail/_include.php # Inspired by the original Rainloop dockerfile from youtous on GitLab -FROM php:8.1-fpm-alpine AS final +FROM php:8.3-fpm-alpine AS final LABEL org.label-schema.description="SnappyMail webmail client image using nginx, php-fpm on Alpine"