Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -20,7 +20,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
20 |
COPY . .
|
21 |
|
22 |
# Expose the port FastAPI runs on
|
23 |
-
EXPOSE
|
24 |
|
25 |
# Run the application with Uvicorn
|
26 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
20 |
COPY . .
|
21 |
|
22 |
# Expose the port FastAPI runs on
|
23 |
+
EXPOSE 8000
|
24 |
|
25 |
# Run the application with Uvicorn
|
26 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|