FROM denoland/deno:1.35.0 ARG GIT_REVISION WORKDIR /app COPY . . RUN deno cache main.ts EXPOSE 8000 CMD ["run", "-A", "main.ts"]