27 lines
565 B
Docker
27 lines
565 B
Docker
FROM node:22-alpine3.19 as builder
|
||
|
||
WORKDIR /app
|
||
|
||
COPY package.json package-lock.json ./
|
||
|
||
RUN npm ci
|
||
|
||
COPY . .
|
||
|
||
RUN npm run build
|
||
|
||
# Stage 2, based on Nginx, to have only the compiled app, ready for production with Nginx
|
||
|
||
FROM nginxinc/nginx-unprivileged:1.28-alpine
|
||
|
||
COPY ./nginx-custom.conf /etc/nginx/conf.d/default.conf
|
||
|
||
USER root
|
||
|
||
## Remove default nginx website
|
||
RUN rm -rf /usr/share/nginx/html/*
|
||
|
||
## From ‘builder’ stage copy over the artifacts in dist folder to default nginx public folder
|
||
COPY --from=builder /app/dist /usr/share/nginx/html
|
||
|
||
USER $UID
|