diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -9,12 +9,15 @@ LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \ USER root -RUN dnf update -y && \ +COPY configure-mirror /usr/local/bin +RUN /usr/local/bin/configure-mirror && \ + dnf update -y && \ dnf install -y \ 'dnf-command(builddep)' \ 'dnf-command(config-manager)' \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \ && \ + /usr/local/bin/configure-mirror && \ dnf config-manager --set-enabled PowerTools && \ dnf install -y \ fedora-packager tito \ |