openwebui-open-terminal/.dockerignore
Timothy Jaeryang Baek d961247987 fix: add .dockerignore to prevent console script corruption (fixes #23)
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
2026-03-06 14:12:23 -06:00

11 lines
80 B
Text

__pycache__
*.egg-info
dist
build
.git
.gitignore
.github
*.pyc
.env
.venv
venv