This commit is contained in:
2026-02-12 02:58:29 -08:00
parent 3e802c42a2
commit 792da02d70
4 changed files with 304 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
FROM nginx:alpine
# Copy your cocaine chic doorbell UI
COPY doorbell.html /usr/share/nginx/html/index.html
# Optional: custom nginx config for SPA behavior
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]