Initial commit

This commit is contained in:
Sebastian Seedorf
2022-01-24 16:04:58 +01:00
commit 06241729e2
14 changed files with 1176 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 ./dist /app/dist
COPY ./package.json /app/package.json
COPY ./package-lock.json /app/package-lock.json
ENTRYPOINT npm start
EXPOSE 3000