Rivalcoder commited on
Commit
92d96cd
·
1 Parent(s): 61e2569
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -20,9 +20,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
20
  COPY requirements.txt ./requirements.txt
21
  RUN pip install -r requirements.txt
22
 
23
- # Copy backend source under /app/Backend to preserve package name
24
- RUN mkdir -p /app/Backend
25
- COPY . /app/Backend
26
 
27
  # Expose default Hugging Face Spaces port
28
  EXPOSE 7860
 
20
  COPY requirements.txt ./requirements.txt
21
  RUN pip install -r requirements.txt
22
 
23
+ ## Copy application source into /app so uvicorn can import api.py
24
+ COPY . .
25
+
26
 
27
  # Expose default Hugging Face Spaces port
28
  EXPOSE 7860