FROM node:21-alpine as builder WORKDIR /app COPY . . RUN npm ci RUN npm run build FROM nginx:latest WORKDIR /app COPY --from=builder /app/dist ./ COPY ./nginx.conf /etc/nginx/conf.d/default.conf