Yield generated for 948c5915-8cf6-4ecd-a0bf-56ce6f091cdf
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.
 
 
 
 
 

23 lines
229 B

FROM node:lts-fermium as build
WORKDIR /front_app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn run build
FROM node:lts-alpine as run
COPY . .
COPY --from=build /front_app/dist ./dist
CMD ["yarn", "dev"]