From 1c9f9ce58f3eaab3ce7547607d8f5b605c95df47 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 7 Nov 2023 09:09:59 -0800 Subject: [PATCH] Unpin python3 and pip versions Since this is built on device, the base image updates unpredictably. I can pin these again if I run my own off-device build pipeline. --- rclone/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclone/Dockerfile b/rclone/Dockerfile index 023d2df..929c3a9 100755 --- a/rclone/Dockerfile +++ b/rclone/Dockerfile @@ -11,7 +11,7 @@ COPY install_rclone.sh / RUN /install_rclone.sh "${VERSION}" "${BUILD_ARCH}" # Add timegaps for pruning backups -RUN apk add --no-cache python3~=3.9 py3-pip~=20 && \ +RUN apk add --no-cache python3 py3-pip && \ pip install --no-cache-dir timegaps==0.1.1 && \ apk del py3-pip