yangtb24 commited on
Commit
f6f2094
·
verified ·
1 Parent(s): 553f292

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /app
4
+
5
+ RUN git clone https://github.com/yangtb2024/siliconflow-balance.git
6
+
7
+ WORKDIR /app/siliconflow-balance
8
+
9
+ RUN pip install -r requirements.txt
10
+
11
+ CMD ["python", "main.py"]