feat: add Dockerfile

This commit is contained in:
max_richter 2023-07-26 13:52:26 +02:00
parent 8e461cea26
commit 917ea70f13

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM denoland/deno:1.35.0
ARG GIT_REVISION
WORKDIR /app
COPY . .
RUN deno cache main.ts
EXPOSE 8000
CMD ["run", "-A", "main.ts"]