memorium/Dockerfile

13 lines
134 B
Docker

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