Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,8 +10,8 @@ RUN pip install --upgrade pip && \
|
|
10 |
pip install --no-cache-dir -r requirements.txt
|
11 |
|
12 |
# Copy the backend and frontend source code
|
13 |
-
COPY backend/
|
14 |
-
COPY frontend/
|
15 |
|
16 |
# Expose FastAPI app on port 7860 (required by Hugging Face)
|
17 |
CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
10 |
pip install --no-cache-dir -r requirements.txt
|
11 |
|
12 |
# Copy the backend and frontend source code
|
13 |
+
COPY backend/
|
14 |
+
COPY frontend/
|
15 |
|
16 |
# Expose FastAPI app on port 7860 (required by Hugging Face)
|
17 |
CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "7860"]
|