GPTfree api commited on
Commit
168c7ba
·
verified ·
1 Parent(s): 3a4ba7d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -36,5 +36,5 @@ RUN pip install -r requirements.txt
36
  # Expose the port that the web UI will use
37
  EXPOSE 7897
38
 
39
- # Run the command specified in go-web.bat
40
- CMD ["runtime/python.exe", "infer-web.py", "--pycmd", "runtime/python.exe", "--port", "7897"]
 
36
  # Expose the port that the web UI will use
37
  EXPOSE 7897
38
 
39
+ # Update the CMD instruction to use the correct Python executable for Linux
40
+ CMD ["python3", "infer-web.py", "--port", "7897"]