Spaces:
Building
Building
Update Dockerfile
Browse files- 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/
|
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"]
|