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