File size: 155 Bytes
82725b9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM denoland/deno:alpine

WORKDIR /app
COPY . .

RUN deno cache main.ts

EXPOSE 7860

CMD ["run", "--allow-net", "--allow-env", "--allow-read", "main.ts"]