FROM nginx:alpine # Copy custom nginx configuration COPY nginx/nginx.conf /etc/nginx/nginx.conf # Copy static frontend files COPY Frontend/ /usr/share/nginx/html/ # Expose port 80 EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]