maptest-bot/Dockerfile
2024-04-24 00:10:09 -07:00

9 lines
128 B
Docker

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