1 FROM node:10-alpine as react-build
 
   2 LABEL maintainer="Michael Winsauer <e1429715@student.tuwien.ac.at>"
 
   7 RUN ["yarn", "install"]
 
  12 LABEL maintainer="Michael Winsauer <e1429715@student.tuwien.ac.at>"
 
  16 COPY --from=react-build /app/build /usr/share/nginx/html
 
  17 COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
 
  19 CMD ["nginx", "-g", "daemon off;"]