Spaces:
Runtime error
Runtime error
EveSa
commited on
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -6,10 +6,8 @@ COPY requirements.txt .
|
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 8 |
|
| 9 |
-
WORKDIR /src
|
| 10 |
-
|
| 11 |
COPY . .
|
| 12 |
|
| 13 |
-
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]
|
| 14 |
|
| 15 |
#CMD python3 -m uvicorn --app-dir ./src api:app --host 0.0.0.0 --port 3001
|
|
|
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 8 |
|
|
|
|
|
|
|
| 9 |
COPY . .
|
| 10 |
|
| 11 |
+
CMD ["uvicorn", "src.api:app", "--host", "0.0.0.0", "--port", "7860"]
|
| 12 |
|
| 13 |
#CMD python3 -m uvicorn --app-dir ./src api:app --host 0.0.0.0 --port 3001
|