From 378cc23b010a62da6259e2cd39ae6b70d3c3844d Mon Sep 17 00:00:00 2001 From: laci Date: Tue, 2 Jul 2024 12:35:39 +0200 Subject: [PATCH] docker --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ad28d1e..5413b60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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