Prime810 commited on
Commit
6960655
·
verified ·
1 Parent(s): b9186b3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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/ backend/
14
- COPY frontend/ 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"]