fxlinux commited on
Commit
f373e34
·
verified ·
1 Parent(s): b1e57ed

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -1
Dockerfile CHANGED
@@ -1 +1,13 @@
1
- From love9wind/d2a:latest
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ RUN git clone https://github.com/nekohy/duck2api
2
+
3
+ FROM denoland/deno:latest
4
+
5
+ WORKDIR /app
6
+
7
+ COPY . .
8
+
9
+ RUN deno cache --node-modules-dir main.ts
10
+
11
+ EXPOSE 8000
12
+
13
+ CMD ["deno", "run", "--allow-net", "--allow-env", "--node-modules-dir", "main.ts"]