mirror of
https://github.com/open-webui/open-terminal.git
synced 2026-07-09 16:09:14 +00:00
Build artifacts (__pycache__, *.egg-info, dist/, etc.) were leaking into the Docker build context via COPY, corrupting the pip-generated console script's shebang line and causing bash to interpret it as a shell script. - Add .dockerignore to exclude build artifacts and dev files - Add __main__.py for python -m open_terminal support
3 lines
43 B
Python
3 lines
43 B
Python
from open_terminal.cli import main
|
|
|
|
main()
|