12 lines
252 B
Docker
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;"]
|