This commit is contained in:
2026-02-26 09:28:16 +01:00
parent 9265ae4773
commit 7eabff214d

View File

@@ -1,4 +1,4 @@
FROM nginx:alpine [cite: 1]
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
@@ -6,6 +6,6 @@ COPY webapp/ /usr/share/nginx/html
COPY vhost.conf /etc/nginx/conf.d/default.conf
EXPOSE 80 [cite: 1]
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]