# build environment FROM node:14-alpine3.14 as build WORKDIR /app ENV PATH /app/node_modules/.bin:$PATH RUN apk add git COPY wrapper-client/package.json ./ COPY wrapper-client/yarn.lock ./ RUN yarn install COPY wrapper-client ./ RUN yarn run build # production environment FROM nginx:stable-alpine COPY --from=build /app/build /usr/share/nginx/html RUN rm /etc/nginx/conf.d/default.conf COPY wrapper-client/nginx.conf /etc/nginx/conf.d EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]