File size: 171 Bytes
54ba1c5
 
 
 
 
 
 
 
 
 
 
70510b4
 
54ba1c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM denoland/deno:latest

EXPOSE 7860

WORKDIR /app

# Prefer not to run as root.
USER deno

RUN deno install --entrypoint main.ts

COPY . .

CMD ["run", "-A", "main.ts"]