Mangesh223 commited on
Commit
497660e
·
verified ·
1 Parent(s): c28d574

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -3,7 +3,6 @@ FROM python:3.9
3
  WORKDIR /app
4
  COPY . .
5
 
6
- RUN pip install --no-cache-dir -r requirements.txt
7
 
8
- # Run both FastAPI and Gradio
9
- CMD uvicorn app:app --host 0.0.0.0 --port 8000 & python gradio_ui.py
 
3
  WORKDIR /app
4
  COPY . .
5
 
6
+ RUN pip install -r requirements.txt
7
 
8
+ CMD python app.py & python gradio_ui.py