testdeep123 commited on
Commit
1ab0e5e
·
verified ·
1 Parent(s): f02fba9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -2,9 +2,8 @@ FROM python:3.10
2
 
3
  WORKDIR /app
4
 
5
- COPY requirements.txt .
6
- RUN pip install -r requirements.txt
7
 
8
- COPY . .
9
 
10
- CMD ["python", "webui.py"]
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY app.py .
 
6
 
7
+ RUN pip install flask huggingface_hub gdown
8
 
9
+ CMD ["python", "app.py"]