Gustav2811 commited on
Commit
81f3f8e
·
1 Parent(s): c00c6c4

Changed SRC structure

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -23,5 +23,5 @@ COPY --chown=user . .
23
  # Expose the port
24
  EXPOSE 7860
25
 
26
- # Command to run your app from its new, simpler path
27
- CMD ["chainlit", "run", "naked_chat/app.py", "--host", "0.0.0.0", "--port", "7860", "--headless"]
 
23
  # Expose the port
24
  EXPOSE 7860
25
 
26
+ # The simple, standard command the platform expects
27
+ CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860", "--headless"]