In order to avoid running into docker.io's new download limit, use the container directly from registry.fedoraproject.org.
26 lines
506 B
Docker
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"]
|