🐳 Add docker support

This commit is contained in:
2023-06-23 20:43:21 +02:00
parent 6bd5c35eb2
commit 2a2852f5dd
4 changed files with 21 additions and 2 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:lts-alpine
WORKDIR /app
COPY package*.json /app/
RUN npm ci
COPY ./ /app/
VOLUME [ "/app/data" ]
CMD ["node", "index.js"]