diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-13 10:53:52 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-13 10:53:52 +0200 |
commit | af54db117a73f19e6fdcf87c93fba86428b6a7be (patch) | |
tree | 4bb36fb58468b6d614b8498e18342d69bb097676 | |
parent | ae16e5bc90d7b0a990c12b6bf312d8fdea6a58f7 (diff) | |
download | podman-docker-builder-af54db117a73f19e6fdcf87c93fba86428b6a7be.tar.gz |
fix syntax error
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,12 +5,12 @@ ENV SUMMARY="podman-docker-builder" \ LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \ summary="${SUMMARY}" \ - description="${DESCRIPTION}" \ + description="${DESCRIPTION}" USER root RUN dnf update -y && \ - dnf install -y podman buildah && \ + dnf install -y podman podman-docker buildah && \ dnf clean all -y COPY configure-podman /root |