13 lines
266 B
Docker
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
|