2021-01-11 18:11:11 +00:00
|
|
|
FROM registry.gitlab.com/fdroid/ci-images-base
|
2017-07-02 13:53:46 +02:00
|
|
|
|
2017-09-08 09:33:25 +02:00
|
|
|
COPY signing-key.asc /
|
|
|
|
|
|
|
|
RUN gpg --import /signing-key.asc
|
|
|
|
|
2017-07-02 13:53:46 +02:00
|
|
|
RUN git clone --depth 1 https://gitlab.com/fdroid/fdroidserver.git \
|
|
|
|
&& cd fdroidserver \
|
2021-05-22 19:09:36 +01:00
|
|
|
&& pip3 install --upgrade babel pip setuptools \
|
2018-04-04 20:48:43 +02:00
|
|
|
&& pip3 install --no-binary python-vagrant -e . \
|
|
|
|
&& python3 setup.py compile_catalog build \
|
2017-07-02 13:53:46 +02:00
|
|
|
&& python3 setup.py install
|
|
|
|
|
2018-04-04 20:48:43 +02:00
|
|
|
# Install additional utilities required by actual builds (list subject to future expansion)
|
2022-02-15 12:52:03 +01:00
|
|
|
# build-tools 32.0.0 is needed for a good apksigner
|
2018-04-04 20:48:43 +02:00
|
|
|
RUN apt-get update && apt-get install --yes \
|
|
|
|
patch \
|
|
|
|
autoconf libtool pkg-config \
|
|
|
|
gradle ant \
|
2022-02-15 12:52:03 +01:00
|
|
|
&& echo y | $ANDROID_HOME/tools/bin/sdkmanager "build-tools;32.0.0" \
|
2018-04-04 20:48:43 +02:00
|
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2017-07-02 13:53:46 +02:00
|
|
|
VOLUME ["/repo"]
|
|
|
|
WORKDIR /repo
|
|
|
|
|
2017-09-29 19:48:26 +02:00
|
|
|
ENTRYPOINT ["../fdroidserver/fdroid"]
|
2017-07-02 22:03:58 +00:00
|
|
|
CMD ["--help"]
|