Add a Dockerfile and instructions for running with Docker/Podman

This commit is contained in:
architect
2025-09-20 16:56:28 +02:00
parent 69bca511ca
commit 125d87fdae
2 changed files with 33 additions and 4 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:24-slim
WORKDIR /app
COPY bot.js ./
COPY package*.json ./
RUN npm install --omit=dev
CMD ["node", "bot.js"]