e96482e520
* https://gitlab.com/fdroid/fdroidserver/-/merge_requests/1033#note_742563869 * https://github.com/wardvl/f-droid-nightly-action/issues/3
27 lines
842 B
Docker
27 lines
842 B
Docker
FROM registry.gitlab.com/fdroid/ci-images-base
|
|
|
|
COPY signing-key.asc /
|
|
|
|
RUN gpg --import /signing-key.asc
|
|
|
|
RUN git clone --depth 1 https://gitlab.com/fdroid/fdroidserver.git \
|
|
&& cd fdroidserver \
|
|
&& pip3 install --upgrade babel pip setuptools \
|
|
&& pip3 install --no-binary python-vagrant -e . \
|
|
&& python3 setup.py compile_catalog build \
|
|
&& 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"]
|
|
WORKDIR /repo
|
|
|
|
ENTRYPOINT ["../fdroidserver/fdroid"]
|
|
CMD ["--help"]
|