docker-ify? idk i didnt wanna install docker desktop so we'll see if this works once it hits the server

This commit is contained in:
2025-10-21 22:57:11 -04:00
parent 480de70b39
commit 8a442e0f0b
7 changed files with 17 additions and 129 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:latest
RUN mkdir -p /usr/scr/bot
WORKDIR /usr/src/bot
COPY . /usr/src/bot
RUN npm install
CMD ["node", "index.js"]