feat(docker): enhance Dockerfile with debugging outputs and install tree utility; update .dockerignore and MANIFEST.in for better packaging

This commit is contained in:
pacnpal
2025-01-28 22:36:22 -05:00
parent 64d09b8842
commit 0bc9dded41
6 changed files with 107 additions and 57 deletions

View File

@@ -1,3 +1,18 @@
recursive-include src/simpleguardhome/templates *
# Include all package Python files
graft src/simpleguardhome
# Include package data files
include src/simpleguardhome/favicon.ico
recursive-include src/simpleguardhome *.py
include src/simpleguardhome/templates/*.html
# Include important project files
include README.md
include LICENSE
include requirements.txt
include pyproject.toml
include setup.py
# Exclude bytecode files
global-exclude *.py[cod]
global-exclude __pycache__
global-exclude *.so