feat(docker): add diagnostic output for package installation and import verification

This commit is contained in:
pacnpal
2025-01-28 21:17:35 -05:00
parent 1bcd9328d9
commit f961c66ef0
2 changed files with 9 additions and 2 deletions

View File

@@ -31,6 +31,8 @@ COPY . .
RUN pip uninstall -y simpleguardhome || true && \
pip install -e . && \
pip show simpleguardhome && \
pip list && \
python3 -c "import sys; print('Python path:', sys.path)" && \
python3 -c "import simpleguardhome; print('Package found at:', simpleguardhome.__file__)"
# Copy and set up entrypoint script