2017-07-04 16:47:59 +02:00
|
|
|
FROM registry.gitlab.com/fdroid/ci-images-server:latest
|
2017-07-02 13:53:46 +02:00
|
|
|
|
|
|
|
RUN git clone --depth 1 https://gitlab.com/fdroid/fdroidserver.git \
|
|
|
|
&& cd fdroidserver \
|
|
|
|
&& pip3 install -e . \
|
|
|
|
&& python3 setup.py install
|
|
|
|
|
|
|
|
VOLUME ["/repo"]
|
|
|
|
WORKDIR /repo
|
|
|
|
|
|
|
|
ENTRYPOINT ["fdroid"]
|
2017-07-03 00:03:58 +02:00
|
|
|
CMD ["--help"]
|