Files
memorium/Dockerfile
2023-12-14 13:54:03 +01: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"]