From 39bfbf63597b1472343b4e1c8248530fd60237b9 Mon Sep 17 00:00:00 2001 From: Ian Date: Fri, 9 Feb 2024 12:28:02 -0800 Subject: [PATCH] Fix build: Global pip install --- rclone/CHANGELOG.md | 14 ++++++++++++++ rclone/Dockerfile | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/rclone/CHANGELOG.md b/rclone/CHANGELOG.md index ac4c59c..c90834d 100644 --- a/rclone/CHANGELOG.md +++ b/rclone/CHANGELOG.md @@ -1,6 +1,20 @@ # Changelog +## 1.6.4 + +- Fix global pip install + +## 1.6.3 + +- Fix paths for timegaps files +- Only run timegaps on protected files used for sync + +## 1.6.2 + +- Make username and password optional + ## 1.6.1 + - Fix protected file filter ## 1.6.0 diff --git a/rclone/Dockerfile b/rclone/Dockerfile index 3d1818b..ea8eed2 100755 --- a/rclone/Dockerfile +++ b/rclone/Dockerfile @@ -12,7 +12,7 @@ RUN /install_rclone.sh "${VERSION}" "${BUILD_ARCH}" # Add timegaps for pruning backups RUN apk add --no-cache python3 py3-pip jq && \ - pip install --no-cache-dir timegaps==0.1.1 && \ + pip install --break-system-packages --no-cache-dir timegaps==0.1.1 && \ apk del py3-pip ENV XDG_CONFIG_HOME=/data