cletus/Dockerfile
roberts af2397fc60
All checks were successful
Deploy Cletus Bot / deploy (push) Successful in 25s
fixed entrypoint
2025-05-10 16:36:52 -05:00

13 lines
165 B
Docker

FROM node:20
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
WORKDIR /app/bot
ENTRYPOINT ["bash", "-c", "echo 'Launching Cletus...'; node bot.js"]