You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
293 B
13 lines
293 B
4 years ago
|
# build stage
|
||
|
FROM node:lts-alpine as build-stage
|
||
|
WORKDIR /app
|
||
|
COPY package*.json ./
|
||
|
RUN npm install
|
||
|
COPY . .
|
||
|
RUN npm run build
|
||
|
|
||
|
# production stage
|
||
|
FROM nginx:stable-alpine as production-stage
|
||
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||
|
EXPOSE 80
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|