diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-06 10:17:14 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-06 10:17:14 +0200 |
commit | f04b90e51381607bb097b56e5384861d6026cc57 (patch) | |
tree | e6e75b29af41b31fe72de5fce0a6971795a9e2eb | |
parent | 99adf8754f897b929f6997131da04c4793528312 (diff) | |
download | rpm-package-builder-f04b90e51381607bb097b56e5384861d6026cc57.tar.gz |
all dnf commands in one run step
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,8 +9,8 @@ LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \ USER root -RUN dnf update -y -RUN dnf install -y \ +RUN dnf update -y && \ + dnf install -y \ 'dnf-command(builddep)' \ 'dnf-command(config-manager)' \ && \ |