blob: 4b54f331955fcf1ac4dd51866ece85bf0f1651d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|