feat(docker): add Dockerfile

This commit is contained in:
2023-07-12 17:00:29 +02:00
parent dedce2a891
commit 4ed86f2e88
3 changed files with 10 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:slim
COPY . /app
WORKDIR /app
RUN npm i
CMD ["npm", "start"]