16 lines
347 B
Docker
16 lines
347 B
Docker
# build environment
|
|
FROM node:16-alpine as build
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
RUN ["npm", "install"]
|
|
COPY . .
|
|
RUN ["npm", "run", "build"]
|
|
|
|
# production environment
|
|
FROM nginx:stable-alpine
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|