Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -41,4 +41,4 @@ COPY --chown=worker *.yaml *.md ./
|
|
41 |
USER worker
|
42 |
|
43 |
# Activate the virtual environment and run uvicorn
|
44 |
-
CMD [".venv/bin/uvicorn", "private_gpt.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
41 |
USER worker
|
42 |
|
43 |
# Activate the virtual environment and run uvicorn
|
44 |
+
CMD [".venv/bin/python", "-m", "uvicorn", "private_gpt.main:app", "--host", "0.0.0.0", "--port", "7860"]
|