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