devcontainer, proper CI/CD, etc etc

This commit is contained in:
2026-02-10 20:58:16 -03:00
parent bf2ea80830
commit 561b4575e0
18 changed files with 2193 additions and 204 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# Armandine gallery static site served by Nginx
FROM nginx:alpine
# Copy static site into default Nginx docroot
COPY src/ /usr/share/nginx/html/
# Optional: custom nginx config could be COPY'd here
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80