flyt af kode-generator til eget repo

This commit is contained in:
2026-07-15 15:26:23 +02:00
commit e9364dd7fe
6 changed files with 820 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