2021-01-11 19:11:11 +01: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
|
|
|
|
|
2022-02-20 13:44:14 +01:00
|
|
|
RUN python3 -m pip install --upgrade pip wheel setuptools \
|
|
|
|
&& python3 -m pip install git+https://gitlab.com/fdroid/fdroidserver.git
|
2017-07-02 13:53:46 +02:00
|
|
|
|
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
|
|
|
|
|
2022-02-20 13:44:14 +01:00
|
|
|
ENTRYPOINT ["/usr/local/bin/fdroid"]
|
2017-07-03 00:03:58 +02:00
|
|
|
CMD ["--help"]
|