This commit is contained in:
mike
2025-12-15 22:42:52 +01:00
parent 0c2e39749f
commit e135fe4822
8 changed files with 122 additions and 28 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# Simple static site image: serve the contents of /public with nginx
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
# Copy static files
COPY public/ ./
# If the site references additional resources, copy them too
COPY resources/ ./resources
# Provide custom nginx.conf for clean URLs
COPY nginx.conf /etc/nginx/conf.d/default.conf