Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -3,7 +3,6 @@ FROM python:3.9
|
|
| 3 |
WORKDIR /app
|
| 4 |
COPY . .
|
| 5 |
|
| 6 |
-
RUN pip install -
|
| 7 |
|
| 8 |
-
|
| 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
|
|
|