ciyidogan commited on
Commit
a4d1915
·
verified ·
1 Parent(s): f5884fa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -43,5 +43,8 @@ COPY . .
43
  # Copy Angular build - Try the ../static path
44
  COPY --from=angular-build /static ./static
45
 
 
 
 
46
  # ============================== START CMD ==============================
47
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
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
48
+
49
  # ============================== START CMD ==============================
50
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]