add Dockerfile to discord-bot

This commit is contained in:
Synthintel0
2023-06-12 18:12:54 +08:00
parent 126327a152
commit 4854dabeea
2 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM node:19-alpine
COPY . /app
WORKDIR /app
RUN npm install
CMD ["sh", "-c", "npm run start:bot"]