Hans-Christoph Steiner 2022-02-15 12:52:03 +01:00
parent 1efbfd9f89
commit e96482e520

View file

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