Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -15,8 +15,6 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 15 |
#COPY app /app
|
| 16 |
COPY . /app
|
| 17 |
|
| 18 |
-
# Expose port 8000 for FastAPI to run on
|
| 19 |
-
EXPOSE 8000
|
| 20 |
|
| 21 |
# Command to run the application
|
| 22 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 15 |
#COPY app /app
|
| 16 |
COPY . /app
|
| 17 |
|
|
|
|
|
|
|
| 18 |
|
| 19 |
# Command to run the application
|
| 20 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|