inital commit

This commit is contained in:
2026-06-16 18:22:07 -04:00
commit a8581428ac
4 changed files with 195 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Use the official lightweight Nginx image
FROM nginx:alpine
# Copy the static HTML file into the Nginx web root directory
COPY index.html /usr/share/nginx/html/
# Expose port 80 to the outside world
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]