Make website Docker ready

This commit is contained in:
2020-06-01 16:09:57 +02:00
parent be3a400512
commit 466b9ea8db
7 changed files with 123 additions and 1 deletions

10
frontend/Dockerfile.dev Normal file
View File

@@ -0,0 +1,10 @@
FROM node:alpine
WORKDIR '/app'
COPY package.json .
RUN yarn
COPY . .
CMD ["yarn", "start"]