at least now nginx starts.

This commit is contained in:
usr0
2026-02-11 15:48:55 +01:00
parent 5d50f29b47
commit b8e322d7be
5 changed files with 49 additions and 2 deletions

View File

@@ -1,2 +1,9 @@
FROM nginx:latest
COPY dockerfiles/nginx/nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]