commit b068b804a970f28bb7c537d5a89b3876949a87eb parent 3c5596b370cc01c375ab4f01c1b8c72b247a813b Author: Iván Ávalos <avalos@disroot.org> Date: Tue, 9 Sep 2025 18:01:11 +0200 fix CI build Diffstat:
| M | contrib/ci/Containerfile | | | 8 | ++++++-- |
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -2,11 +2,15 @@ FROM docker.io/briar/ci-image-android:latest # Install fdroidserver and other tools RUN apt update && apt-get -qy install --no-install-recommends \ + pipx \ python3-pip \ + python3-wheel \ + python3-setuptools \ openssh-client \ rsync -RUN python3 -m pip install --upgrade pip wheel setuptools -RUN python3 -m pip install git+https://gitlab.com/fdroid/fdroidserver.git +RUN pipx install git+https://gitlab.com/fdroid/fdroidserver.git + +ENV PATH="${PATH}:${HOME}/.local/bin" ENV JAVA_HOME /usr/lib/jvm/java-17-openjdk-amd64