adaptive / Dockerfile (3)
ERROR418's picture
Upload Dockerfile (3)
f8eca3c verified
raw
history blame
156 Bytes
FROM denoland/deno:alpine
WORKDIR /app
COPY . .
RUN deno cache main.ts
EXPOSE 7860
CMD ["run", "--allow-net", "--allow-env", "--allow-read", "main.ts"]