dbei1 / Dockerfile
hzruo's picture
Create Dockerfile
c82cc38 verified
raw
history blame contribute delete
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"]