1
0
mirror of https://github.com/daniviga/qgis3-cd-copr.git synced 2024-11-23 01:46:13 +01:00
qgis3-cd-copr/docker/Dockerfile.f26

28 lines
872 B
Docker
Raw Normal View History

2017-10-24 21:27:52 +02:00
# vi:syntax=dockerfile
2017-10-25 16:25:12 +02:00
FROM registry.fedoraproject.org/fedora:26
2017-10-24 21:27:52 +02:00
MAINTAINER Daniele Viganò <daniele@vigano.me>
2017-10-25 09:37:26 +02:00
RUN dnf install -y sudo tar bzip2 git python3-pip mock copr-cli && \
2017-10-24 21:27:52 +02:00
dnf clean all
# Use a Twisted binary wheel to avoid too many dependencies
RUN pip3 install https://daniele.vigano.me/files/pypi/Twisted-17.9.0-cp36-cp36m-linux_x86_64.whl \
buildbot-worker
2017-10-25 16:25:12 +02:00
RUN useradd -u 1000 builder && \
2017-10-24 21:27:52 +02:00
usermod -a -G mock builder
2017-10-25 09:36:11 +02:00
RUN echo "builder ALL=(ALL) NOPASSWD: /usr/bin/dnf" >> /etc/sudoers
2017-10-24 21:27:52 +02:00
USER builder
ENV HOME /home/builder
WORKDIR ${HOME}
COPY copr $HOME/.config/copr
2017-10-25 16:25:12 +02:00
RUN buildbot-worker create-worker $HOME 172.17.0.1 f26 work3rP@ss! && \
2017-10-24 21:27:52 +02:00
echo "Daniele Viganò <daniel@vigano.me>" > info/admin && \
echo "Docker running Fedora 26 (x86_64)" > info/host
ENTRYPOINT ["/usr/bin/buildbot-worker"]
CMD ["start", "--nodaemon"]