Add Dockerfile for nginx-based static serving

This commit is contained in:
Marty Bostick
2026-07-10 15:24:58 +00:00
parent 2ef6be3095
commit e5fc9dba8f
+3
View File
@@ -0,0 +1,3 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80