🎉 initial commit
Some checks failed
Deploy to VM / deploy (push) Failing after 55s

This commit is contained in:
mi
2025-11-03 21:07:40 +10:00
commit c760afa330
7 changed files with 127 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Use nginx alpine for a small production image
FROM nginx:alpine
# Copy custom nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy site files to nginx html directory
COPY site/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# nginx alpine image already has the CMD to start nginx