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.
|
#stage 1
|
|
FROM node:latest as node
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm run build --prod
|
|
#stage 2
|
|
FROM nginx:alpine
|
|
COPY --from=node /app/dist/demo-app /usr/share/nginx/html
|
|
|