debian-koji-osbuild/test/Dockerfile
Christian Kellner c282b9b1f0 test: replace docker.io with fedora's registry
In order to avoid running into docker.io's new download limit,
use the container directly from registry.fedoraproject.org.
2020-11-22 23:53:38 +01:00

26 lines
506 B
Docker

FROM registry.fedoraproject.org/fedora:latest
RUN dnf -y upgrade \
&& dnf -y \
--setopt=fastestmirror=True \
--setopt=install_weak_deps=False \
install \
koji-builder \
koji-hub \
koji-utils \
koji \
postgresql \
pylint \
python3-flexmock \
python3-httpretty \
python3-jsonschema \
python3-pytest-cov \
python3-pytest \
python3-koji \
python3-requests \
ShellCheck \
&& dnf clean all
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]