FROM nginx:1.27-alpine # Use a minimal Nginx image to serve the built Flutter web app. # Assumes `flutter build web` has already populated build/web/ in the build context. COPY deploy/web/nginx.conf /etc/nginx/conf.d/default.conf COPY build/web /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]