ERROR418 commited on
Commit
f8eca3c
·
verified ·
1 Parent(s): 90bef69

Upload Dockerfile (3)

Browse files
Files changed (1) hide show
  1. Dockerfile (3) +10 -0
Dockerfile (3) 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"]