FROM node:22-alpine AS builder WORKDIR /app COPY frontend/package*.json ./ RUN npm ci COPY frontend/ ./ RUN npm run build FROM nginx:stable-alpine COPY --from=builder /app/dist /usr/share/nginx/html COPY <