Add files via upload

This commit is contained in:
XXhaos
2026-04-23 17:25:35 +08:00
committed by GitHub
commit 1978c31bf0
4 changed files with 1602 additions and 0 deletions

12
xbox-bot/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY server.js ./
EXPOSE 3000
CMD ["node", "server.js"]