samsamsh commited on
Commit
82725b9
·
verified ·
1 Parent(s): 4e56630

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM denoland/deno:alpine
2
+
3
+ WORKDIR /app
4
+ COPY . .
5
+
6
+ RUN deno cache main.ts
7
+
8
+ EXPOSE 7860
9
+
10
+ CMD ["run", "--allow-net", "--allow-env", "--allow-read", "main.ts"]