Initial commit

This commit is contained in:
hantim
2026-04-09 17:40:51 -04:00
commit 3c10a8c6e4
6 changed files with 114 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:alpine
# Remove default content
RUN rm -rf /usr/share/nginx/html/*
# static site
COPY static /usr/share/nginx/html
# a custom nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80