Draft create

This commit is contained in:
2020-04-16 10:02:14 +02:00
parent 234bc3e264
commit 3a221a5e9f
24 changed files with 596 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:9-slim
ENV PORT 8080
EXPOSE 8080
WORKDIR /usr/src/app
COPY . .
CMD ["npm", "start"]