From 192f2bf5c70d1f663c360fb42ebe2fb6b5cb0505 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Fri, 11 Oct 2019 08:58:00 +0200 Subject: [PATCH] remove wheel file from docker image after install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6646c1c..193691b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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