Initial Commit

This commit is contained in:
Sebastian Seedorf
2022-01-30 13:59:20 +01:00
commit b79abaeba9
25 changed files with 31310 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:16-alpine
WORKDIR /app
ENV NODE_ENV=production
COPY . /app
RUN npm install --only=production
ENTRYPOINT npm start
EXPOSE 3000