From 8e9105fed5d78af763f984db42c9f2a439e3fc21 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Fri, 15 May 2020 23:37:39 +0200 Subject: [PATCH] Install wheel --- src/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index 00ab72c..7f711da 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -4,7 +4,7 @@ RUN apk update && apk add python3 dcron mariadb-client postgresql-client ADD . /restic-compose-backup WORKDIR /restic-compose-backup -RUN pip3 install -U pip setuptools && pip3 install -e . +RUN pip3 install -U pip setuptools wheel && pip3 install -e . ENV XDG_CACHE_HOME=/cache ENTRYPOINT []