From 65a3429b7ad7ca16388ae123ba3fa7b6a5647f2b Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Wed, 29 Jan 2025 10:08:19 -0500 Subject: [PATCH] refactor(docker): update Dockerfile to install package from the correct path for improved reliability --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e282c58..c7b469a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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