Files
maptest-bot/Dockerfile
2025-09-21 23:12:41 +00:00

9 lines
128 B
Docker

FROM node:24-alpine
COPY ./ /app
WORKDIR /app
RUN apk add --no-cache g++ make python3 && npm install
CMD [ "node","bot.js" ]