FROM denoland/deno:debian RUN mkdir /app WORKDIR /app COPY . ./ RUN chmod +x ./run.sh RUN chmod +x ./src/bot.ts ENTRYPOINT [ "./run.sh" ]