Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ RUN INSTALL_PKGS="python3 python3-devel python3-setuptools python3-pip python3-v
dnf -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
dnf -y clean all --enablerepo='*'

# Copy in the Koji config files rather than installing fedora-packager because
# it pulls in far too many dependencies.
COPY koji_config/fedora.conf /etc/koji.conf.d/fedora.conf
COPY koji_config/stg.conf /etc/koji.conf.d/stg.conf

RUN mkdir -p /etc/elnbuildsync && \
chgrp -R 0 /etc/elnbuildsync && \
chmod -R g=u /etc/elnbuildsync
Expand Down
16 changes: 16 additions & 0 deletions koji_config/fedora.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[fedora]

;configuration for koji cli tool

;url of XMLRPC server
server = https://koji.fedoraproject.org/kojihub

;url of web interface
weburl = https://koji.fedoraproject.org/koji

;url of package download site
topurl = https://kojipkgs.fedoraproject.org/

authtype = kerberos

use_fast_upload = yes
16 changes: 16 additions & 0 deletions koji_config/stg.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[stg]

;configuration for koji cli tool

;url of XMLRPC server
server = https://koji.stg.fedoraproject.org/kojihub

;url of web interface
weburl = https://koji.stg.fedoraproject.org/koji

;url of package download site
topurl = https://kojipkgs.stg.fedoraproject.org/

authtype = kerberos

use_fast_upload = yes