debian-koji-osbuild/test/Dockerfile
Christian Kellner 0af2d958e3 test: add pytest to test env container
Add pytest and coverage support for it to the koji test environment
container.
2020-09-14 17:02:39 +02:00

23 lines
442 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-hub \
koji-utils \
koji \
postgresql \
pylint \
python3-flexmock \
python3-jsonschema \
python3-pytest-cov \
python3-pytest \
python3-koji \
&& dnf clean all
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]