# Dockerfile for pre-built Angular frontend (air-gapped/restricted environments) # Build the Angular app locally first: cd frontend && npm run build:prod # Then use this Dockerfile to package the pre-built files FROM nginx:alpine # Copy pre-built Angular app to nginx COPY frontend/dist/frontend/browser /usr/share/nginx/html # Copy nginx configuration COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]