memorium/Dockerfile
2023-08-24 00:13:09 +02:00

13 lines
153 B
Docker

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