Create primegrading docker with nginx and html

This commit is contained in:
GCH
2026-06-26 13:41:18 +02:00
parent 4d7e62d8c0
commit efaec8ae58
5 changed files with 1455 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:alpine
# Copy nginx config
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
# Copy homepage files
COPY html/ /usr/share/nginx/html/
# Change permissions for NGINX access
RUN chmod -R 755 /usr/share/nginx/html/
EXPOSE 80