On Tue, May 19, 2015, at 11:29 AM, Jeremy Eder wrote: > # cat Dockerfile > FROM rhel7/rhel-tools > MAINTAINER [email protected] > COPY ./MegaCli-8.07.08-1.noarch.rpm /root/ > COPY ./megaraid-profile.sh /etc/profile.d/ > RUN yum localinstall -y /root/MegaCli-8.07.08-1.noarch.rpm
As a general pattern for this stuff, I'd add: RUN rm /root/*.rpm (And this is where we get into https://github.com/docker/docker/pull/12198 )
