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