Files
gdm-Servo-model/Dockerfile.static
2026-08-11 17:37:11 +08:00

13 lines
266 B
Docker

FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build:static
FROM nginx:1.27-alpine
COPY deploy/nginx-static.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist-static /usr/share/nginx/html
EXPOSE 80