de427e9c-bf86-4d7e-aa73-ff2b8dc8834e — Commit 9b91c4f2

AuthorMikkel Thygesen<Mikkelet@gmail.com>
Date2026-03-21 13:31:08 +0100
update dockerfile

Changed files

site/Dockerfile | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

Diff

diff --git a/site/Dockerfile b/site/Dockerfile
index 21f9a5d..2280d9a 100644
--- a/site/Dockerfile
+++ b/site/Dockerfile
@@ -1,6 +1,6 @@
FROM php:8.4-fpm-alpine
-RUN apk add --no-cache nginx supervisor sqlite-dev \
+RUN apk add --no-cache sqlite-dev \
&& docker-php-ext-install pdo pdo_sqlite bcmath
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
@@ -24,9 +24,6 @@ RUN cp .env.example .env \
RUN chown -R www-data:www-data storage bootstrap/cache database
-COPY docker/nginx.conf /etc/nginx/http.d/default.conf
-COPY docker/supervisord.conf /etc/supervisord.conf
+EXPOSE 9000
-EXPOSE 80
-
-CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
+CMD ["php-fpm"]