File size: 199 Bytes
89b1816
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM denoland/deno:latest

WORKDIR /app

COPY . .

RUN deno cache --node-modules-dir main.ts

EXPOSE 7860

CMD ["deno", "run", "--allow-net", "--allow-env", "--node-modules-dir", "main.ts"]