add git action workflow: build image, push to image registry

This commit is contained in:
nicholas
2025-06-14 21:18:28 -05:00
parent a05456f57f
commit a76fb5a821
13 changed files with 44 additions and 27 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY site/ /usr/share/nginx/html/
EXPOSE 80