This commit is contained in:
laci
2024-07-02 12:35:39 +02:00
parent 791c617bbc
commit 378cc23b01

View File

@@ -61,7 +61,9 @@ ARG PHP_VERSION="83"
RUN apk --no-cache add php${PHP_VERSION} \
php${PHP_VERSION}-fpm \
php${PHP_VERSION}-curl
php${PHP_VERSION}-curl \
sudo \
docker
COPY nginx.conf /etc/nginx/nginx.conf
@@ -69,9 +71,11 @@ RUN mkdir -p /usr/share/nginx/html
COPY index.html /usr/share/nginx/html
COPY install.php /usr/share/nginx/html
COPY install.sh /usr/share/nginx/html
COPY installer.css /usr/share/nginx/html
RUN chown -R nginx:nginx /usr/share/nginx/html
VOLUME ["/var/cache/nginx"]
VOLUME ["/var/run/docker.sock"]
EXPOSE 80