maptest-bot/Dockerfile
Quaternions 027e7c50f8 Run "deploy-commands.js" on startup
could do this on deploy only, but I don't feel like figuring that out...
2024-04-17 22:22:46 -07:00

10 lines
125 B
Docker

FROM node:18-alpine
COPY ./ /app
WORKDIR /app
RUN npm install
CMD [ "node","deploy-commands.js" ]
CMD [ "node","bot.js" ]