Remove PIP cache for Heat

We only install packages one time so there is no benefit to
storing 50MB of PIP cache data.

Change-Id: I294ad00464c7fd2312d6140140d334ff9bddb611
Partial-Bug: #1476480
This commit is contained in:
Steven Dake 2015-07-21 14:46:27 -07:00
parent 7bc8af43c3
commit 39378aa919

View File

@ -9,7 +9,8 @@ RUN cd /heat \
&& pip install -r requirements.txt \
&& pip install /heat \
&& mkdir /etc/heat /var/log/heat \
&& cp -r /heat/etc/* /etc/heat/
&& cp -r /heat/etc/* /etc/heat/ \
&& rm -rf /root/.cache
COPY config-heat.sh /opt/kolla/