Update Dockerfile
Browse files- Dockerfile +2 -9
Dockerfile
CHANGED
@@ -1,18 +1,11 @@
|
|
1 |
-
# Use the official Python image
|
2 |
FROM python:3.10-slim
|
3 |
|
4 |
-
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Copy requirements and install dependencies
|
8 |
COPY requirements.txt .
|
9 |
RUN pip install --no-cache-dir -r requirements.txt
|
10 |
|
11 |
-
# Copy app files
|
12 |
COPY . .
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
# Run the FastAPI app using uvicorn
|
18 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
|
|
1 |
FROM python:3.10-slim
|
2 |
|
|
|
3 |
WORKDIR /app
|
4 |
|
|
|
5 |
COPY requirements.txt .
|
6 |
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
|
|
|
8 |
COPY . .
|
9 |
|
10 |
+
EXPOSE 7860
|
11 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
|
|