Spaces:
Sleeping
Sleeping
Commit
·
137dc84
1
Parent(s):
69beac6
fix error
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -11,4 +11,6 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
11 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
|
13 |
COPY --chown=user . /app
|
14 |
-
|
|
|
|
|
|
11 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
|
13 |
COPY --chown=user . /app
|
14 |
+
|
15 |
+
# Start the application with uvicorn
|
16 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--no-use-uvloop"]
|