refactor(docker): update Dockerfile to install package from the correct path for improved reliability

This commit is contained in:
pacnpal
2025-01-29 10:08:19 -05:00
parent c5da870762
commit 65a3429b7a

View File

@@ -18,7 +18,7 @@ COPY setup.py pyproject.toml MANIFEST.in ./
COPY src ./src
# Install the package
RUN pip install -e . && \
RUN pip install -e /app && \
python3 -c "import simpleguardhome; print('Package found at:', simpleguardhome.__file__)"
# Set up health check