maptest-bot/Dockerfile
Quaternions 2d39e813fa
Some checks failed
continuous-integration/drone/push Build is failing
Run "deploy-commands.js" at image build time
could do this on deploy only, but I don't feel like figuring that out...
2024-04-17 22:29:42 -07:00

10 lines
125 B
Docker

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