update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -27,4 +27,5 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
27 |
|
28 |
COPY . .
|
29 |
|
30 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
27 |
|
28 |
COPY . .
|
29 |
|
30 |
+
# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
31 |
+
CMD ["python", "gradio_app.py", "launch", "--listen", "--hf-space"]
|