[Rpm-maint] [rpm-software-management/rpm] Update dnf options in Dockerfire for readability. (#272)

Jun Aruga notifications at github.com
Sat Jul 22 11:09:29 UTC 2017


Here document does not work ;)
At least, it can be supported from Docker 2.0.
Ref: `https://github.com/moby/moby/issues/1554#issuecomment-196544146`

```
RUN cat <<EOF >> /etc/dnf/dnf.conf
deltarpm=0
install_weak_deps=0
tsflags=nodocs
EOF
```

Brackets also does not work ;)

```
RUN (
  echo deltarpm=0
  echo install_weak_deps=0
  echo tsflags=nodocs
) >> /etc/dnf/dnf.conf
```

Sadly, finally only escape long line. ;)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/272#issuecomment-317176352
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rpm.org/pipermail/rpm-maint/attachments/20170722/d17d040b/attachment.html>


More information about the Rpm-maint mailing list