Move the container directory, containing the container definitions for all the test containers, to test/, where all the other test- related files are located (with the exception of `Schutzbot`). Use `test/build-container.sh` to build the container, instead of replicating that in `test-integration.sh`.
22 lines
623 B
Text
22 lines
623 B
Text
FROM registry.access.redhat.com/ubi8/ubi:latest
|
|
|
|
COPY test/container/rhel.repo /etc/yum.repos.d/
|
|
COPY test/container/brew.repo /etc/yum.repos.d/
|
|
|
|
RUN dnf -y upgrade \
|
|
&& dnf -y \
|
|
--setopt=fastestmirror=True \
|
|
--setopt=install_weak_deps=False \
|
|
install \
|
|
koji-builder \
|
|
koji-utils \
|
|
python3-koji \
|
|
python3-requests \
|
|
&& dnf clean all
|
|
|
|
COPY test/container/builder/kojid.conf /etc/kojid/kojid.conf
|
|
COPY plugins/builder/osbuild.py /usr/lib/koji-builder-plugins/
|
|
COPY test/container/builder/run-kojid.sh /app/run-kojid.sh
|
|
COPY test/container/builder/osbuild.krb5.conf /etc/krb5.conf.d/
|
|
|
|
ENTRYPOINT /app/run-kojid.sh
|