DataScope26/WEB
0
1FROM node:22-bullseye-slim AS builder2 3WORKDIR /app4 5COPY package*.json ./6 7RUN npm ci8 9COPY . .10 11RUN npm run build12 13FROM nginx:stable-alpine14 15EXPOSE 786016 17COPY --from=builder /app/dist /usr/share/nginx/html18 19COPY nginx.conf /etc/nginx/conf.d/default.conf20 