Afrinetwork7
commited on
Commit
•
ab322d4
1
Parent(s):
38d6cc5
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -15,4 +15,6 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
16 |
|
17 |
COPY --chown=user . /app
|
18 |
-
|
|
|
|
|
|
15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
16 |
|
17 |
COPY --chown=user . /app
|
18 |
+
|
19 |
+
# Enable debug mode in the CMD instruction
|
20 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--log-level", "debug"]
|