ysfad commited on
Commit
0e562e6
·
1 Parent(s): 0cda118

fix: Remove exec from Dockerfile CMD to resolve PATH error

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -25,5 +25,4 @@ RUN mkdir -p models
25
  EXPOSE 7860
26
 
27
  # Command to run the application
28
- # Using exec to make app.py the main process (PID 1)
29
- CMD ["exec", "python", "app.py"]
 
25
  EXPOSE 7860
26
 
27
  # Command to run the application
28
+ CMD ["python", "app.py"]