1oscon commited on
Commit
a8d6b95
·
verified ·
1 Parent(s): 9c9a2a1

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +2 -10
requirements.txt CHANGED
@@ -1,10 +1,2 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
- COPY requirements.txt .
5
- RUN pip install --no-cache-dir -U pip && pip install --no-cache-dir -r requirements.txt
6
-
7
- COPY . /app
8
- ENV PORT=7860
9
- # Gradio 会自动监听 0.0.0.0:PORT(代码里 demo.launch(..., server_port=int(os.environ.get("PORT", 7860))))
10
- CMD ["python", "app.py"]
 
1
+ gradio>=4.27.0
2
+ requests>=2.31.0