Files
klubhaus-doorbell/sketches/doorbell/Dockerfile
2026-02-12 02:58:29 -08:00

12 lines
252 B
Docker

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;"]