Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -11,8 +11,7 @@ COPY . /app
|
|
11 |
RUN pip install -r app/requirements.txt
|
12 |
|
13 |
# Expose port 80 for the API
|
14 |
-
EXPOSE
|
15 |
|
16 |
# Run the FastAPI server with Uvicorn
|
17 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "
|
18 |
-
|
|
|
11 |
RUN pip install -r app/requirements.txt
|
12 |
|
13 |
# Expose port 80 for the API
|
14 |
+
EXPOSE 8000
|
15 |
|
16 |
# Run the FastAPI server with Uvicorn
|
17 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
|