19 lines
344 B
Docker
19 lines
344 B
Docker
FROM node:16 as builder
|
|
|
|
WORKDIR /usr/app/src
|
|
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
##################################################################
|
|
|
|
FROM nginx:latest as deployer
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=builder /usr/app/src/dist /usr/share/nginx/html
|