deno / Dockerfile
samsamsh's picture
Create Dockerfile
82725b9 verified
raw
history blame contribute delete
155 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"]