# Build FROM node:22-alpine AS build WORKDIR /app # The production build never runs tests, so skip Puppeteer's Chrome download. ENV PUPPETEER_SKIP_DOWNLOAD=1 COPY package*.json ./ RUN npm ci COPY . . RUN npm run build -- --configuration production # Serve FROM nginx:stable-alpine COPY --from=build /app/dist/*/browser /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf