debian-koji-osbuild/container/builder/Dockerfile
Christian Kellner aefe1218b5 initial import
2020-09-02 19:15:25 +02:00

18 lines
468 B
Docker

FROM docker.io/library/fedora:latest
RUN dnf -y upgrade \
&& dnf -y \
--setopt=fastestmirror=True \
--setopt=install_weak_deps=False \
install \
koji-builder \
koji-utils \
postgresql \
python3-koji \
&& dnf clean all
COPY container/builder/kojid.conf /etc/kojid/kojid.conf
COPY plugins/builder/osbuild.py /usr/lib/koji-builder-plugins/
COPY container/builder/run-kojid.sh /app/run-kojid.sh
ENTRYPOINT /app/run-kojid.sh