remove wheel file from docker image after install

This commit is contained in:
Robert Kaussow 2019-10-11 08:58:00 +02:00
parent 9ee176bba9
commit 192f2bf5c7

View File

@ -13,7 +13,7 @@ RUN \
rm -rf /var/cache/apk/* && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir --find-links=. ansible-doctor && \
rm -f ansible_doctor.whl && \
rm -f ansible_doctor-*.whl && \
rm -rf /root/.cache/
USER root