# Build Stage FROM node:lts-alpine as build-stage LABEL Maintainer Alicia Sykes RUN apk update WORKDIR /app COPY package.json ./ COPY yarn.lock ./ RUN yarn install COPY . . RUN yarn build # Production Stage ENV PORT 80 FROM nginx:1.15.7-alpine as production-stage COPY --from=build-stage /app/dist /usr/share/nginx/html EXPOSE ${PORT} VOLUME /usr/share/nginx/html/item-icons CMD ["nginx", "-g", "daemon off;"]