ciyidogan commited on
Commit
2f1118c
·
verified ·
1 Parent(s): ac91331

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -38,8 +38,8 @@ RUN pip install --no-cache-dir -r requirements.txt
38
  # ============================== APP CODE ===============================
39
  COPY . .
40
 
41
- # Copy Angular build
42
- COPY --from=angular-build /app/dist/flare-ui ./static
43
 
44
  # ============================== START CMD ==============================
45
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
38
  # ============================== APP CODE ===============================
39
  COPY . .
40
 
41
+ # Copy Angular build - Fix: correct path from angular-build stage
42
+ COPY --from=angular-build /app/static ./static
43
 
44
  # ============================== START CMD ==============================
45
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]