debian-koji-osbuild/test/Dockerfile
Christian Kellner 94d0a5f57a test: add httpretty & requests to test container
Add the requests and httpretty packages to the test environment.
The former will be used in the builder plugin and the latter for
mocking http requests.
2020-09-15 18:07:25 +02:00

25 lines
483 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-httpretty \
python3-jsonschema \
python3-pytest-cov \
python3-pytest \
python3-koji \
python3-requests \
&& dnf clean all
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]