Initial Commit

This commit is contained in:
Philipp Klueter
2021-07-04 22:01:29 +02:00
parent 8464c4c560
commit baffbb7a6c
4 changed files with 408 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:lts-alpine
WORKDIR /app
ADD . /app
RUN npm install
EXPOSE 3000
CMD npm start