ciyidogan commited on
Commit
07a31af
·
verified ·
1 Parent(s): ceca3c2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -40,8 +40,8 @@ RUN pip install --no-cache-dir -r requirements.txt
40
  # ============================== APP CODE ===============================
41
  COPY . .
42
 
43
- # Copy Angular build - Try the ../static path
44
- COPY --from=angular-build /static ./static
45
 
46
  # Create assets directory if it doesn't exist
47
  RUN mkdir -p ./static/assets
 
40
  # ============================== APP CODE ===============================
41
  COPY . .
42
 
43
+ # Copy Angular build output
44
+ COPY --from=angular-build /app/dist/flare-ui ./static
45
 
46
  # Create assets directory if it doesn't exist
47
  RUN mkdir -p ./static/assets