Browse Source

Add frontend dockerfile

pull/9/head
garritfra 5 years ago
parent
commit
2c8e61acbb
  1. 8
      frontend/Dockerfile

8
frontend/Dockerfile

@ -0,0 +1,8 @@
FROM node
RUN npm install \
&& npm run build
EXPOSE 80
CMD [ "npm", "start" ]
Loading…
Cancel
Save