From e0565bd5cab74167556ec44ffab7fe1620816297 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 8 Oct 2019 17:02:40 +0200 Subject: [PATCH] fix wheel installation --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b293983..db5083d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,13 +6,13 @@ LABEL maintainer="Robert Kaussow " \ org.label-schema.vendor="Robert Kaussow" \ org.label-schema.schema-version="1.0" -ADD dist/ansible_doctor*.whl /ansible_doctor.whl +ADD dist/ansible_doctor-*.whl / RUN \ - apk update --no-cache \ + apk update --no-cache && \ rm -rf /var/cache/apk/* && \ pip install --upgrade --no-cache-dir pip && \ - pip install --no-cache-dir ansible_doctor.whl && \ + pip install --no-cache-dir --find-links=. ansible-doctor && \ rm -f ansible_doctor.whl && \ rm -rf /root/.cache/