Merge branch 'build-tools-32.0.0' into 'master'

build-tools 32.0.0 is needed for a good apksigner

See merge request fdroid/docker-executable-fdroidserver!11
This commit is contained in:
Hans-Christoph Steiner 2022-02-15 12:11:24 +00:00
commit dfe8da76a5

View file

@ -12,10 +12,12 @@ RUN git clone --depth 1 https://gitlab.com/fdroid/fdroidserver.git \
&& python3 setup.py install
# Install additional utilities required by actual builds (list subject to future expansion)
# build-tools 32.0.0 is needed for a good apksigner
RUN apt-get update && apt-get install --yes \
patch \
autoconf libtool pkg-config \
gradle ant \
&& echo y | $ANDROID_HOME/tools/bin/sdkmanager "build-tools;32.0.0" \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
VOLUME ["/repo"]