memorium/Dockerfile

13 lines
153 B
Docker
Raw Normal View History

2023-08-10 10:45:39 +02:00
FROM denoland/deno:latest
2023-07-26 13:52:26 +02:00
ARG GIT_REVISION
WORKDIR /app
COPY . .
2023-08-24 00:13:09 +02:00
RUN deno cache main.ts && deno task build
2023-07-26 13:52:26 +02:00
EXPOSE 8000
CMD ["run", "-A", "main.ts"]