🐳 Add docker support
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user