memorium/Dockerfile

13 lines
134 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 . .
RUN deno cache main.ts
EXPOSE 8000
CMD ["run", "-A", "main.ts"]