Files
documentamusica/Dockerfile
2025-10-03 11:09:06 +02:00

11 lines
210 B
Docker

FROM nginx:alpine
# Copy static HTML files to nginx web root
COPY src/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# nginx runs as daemon by default in the container
CMD ["nginx", "-g", "daemon off;"]