XiaoHanYS commited on
Commit
5b886c4
·
verified ·
1 Parent(s): 94e5d67

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/seqcrafter/fetch_danmu:latest
2
+
3
+ WORKDIR /app
4
+
5
+ ENV PATH=/root/.local/bin:$PATH
6
+
7
+ EXPOSE 8080
8
+
9
+ CMD ["fastapi", "run", "main.py", "--port", "8080"]