docker-executable-fdroidserver/Dockerfile
2017-07-04 14:47:59 +00:00

12 lines
280 B
Docker

FROM registry.gitlab.com/fdroid/ci-images-server:latest
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"]
CMD ["--help"]