From bea481555bc1270ab371a22c69973d648e526d54 Mon Sep 17 00:00:00 2001 From: Hemna Date: Sat, 25 Jan 2025 13:01:27 -0500 Subject: [PATCH] update the install from github in Dockerfile --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index ad5c6af..f4c75d3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -55,7 +55,8 @@ RUN if [ "$INSTALL_TYPE" = "pypi" ]; then \ uv pip install aprsd==$APRSD_PIP_VERSION; \ elif [ "$INSTALL_TYPE" = "github" ]; then \ git clone -b $APRSD_BRANCH https://github.com/craigerl/aprsd; \ - cd /app/aprsd && uv pip install .; \ + ls -al /app/aprsd; \ + uv pip install /app/aprsd; \ ls -al /app/.venv/lib/python3.11/site-packages/aprsd*; \ fi # RUN uv pip install gevent uwsgi