added php-fpm package
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
gyurix
2024-07-01 12:59:08 +02:00
parent c0e1e01637
commit 59b1903c2e

View File

@@ -57,8 +57,11 @@ RUN \
apk del ${build_pkgs} && \
rm -rf /var/cache/apk/*
RUN apk --no-cache add php83 \
php83-curl
ARG PHP_VERSION="83"
RUN apk --no-cache add php${PHP_VERSION} \
php${PHP_VERSION}-fpm \
php${PHP_VERSION}-curl
COPY nginx.conf /etc/nginx/nginx.conf