Initial commit

This commit is contained in:
2021-08-02 17:04:26 +02:00
commit fe1c8c4c15
15 changed files with 5058 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]