From 7c5b10da0ba9f647738a45f1a72201edc3775808 Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 28 Sep 2024 18:15:56 +0100 Subject: [PATCH] oops --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2171670..1eeaab4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM alpine:3.20.3 AS builder # Variables ARG NGINX_VERSION="1.27.1" -ARG PHP_VERSION="8.3" # Install build dependencies and required tools RUN apk update && apk upgrade && \ @@ -48,7 +47,7 @@ COPY --from=builder /tmp/public /tmp/public # Install runtime dependencies RUN apk update && apk upgrade && \ - apk add --no-cache php81 php81-fpm php81-gd pcre + apk add --no-cache php83 php83-fpm php83-gd pcre # Cleanup unnecessary files RUN rm -rf /var/cache/apk/*