FROM lukechannings/deno # same as normal deno image but supports ARM because lol WORKDIR /app COPY . . RUN deno cache index.ts ENTRYPOINT [ "deno", "task", "run:bot" ]