ciyidogan commited on
Commit
dcf647a
·
verified ·
1 Parent(s): bfa2a8d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -46,5 +46,9 @@ COPY --from=angular-build /static ./static
46
  # Create assets directory if it doesn't exist
47
  RUN mkdir -p ./static/assets
48
 
 
 
 
 
49
  # ============================== START CMD ==============================
50
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
46
  # Create assets directory if it doesn't exist
47
  RUN mkdir -p ./static/assets
48
 
49
+ # Debug: Check if static files exist
50
+ RUN ls -la ./static/ || echo "No static directory"
51
+ RUN ls -la ./static/index.html || echo "No index.html"
52
+
53
  # ============================== START CMD ==============================
54
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]