From 21c2d8eded48f0e21615b88f7780f5fdb1fcaff1 Mon Sep 17 00:00:00 2001 From: Mathias Gumz Date: Thu, 4 Jan 2024 11:39:02 +0100 Subject: [PATCH] Upgrade rclone to 1.65.1 and base image This commit bumps the packaged rclone version to v1.65.1. The changelog is available [here](https://rclone.org/changelog/#v1-60-1-2022-11-17). Various bugfixes aside: Optimization on directory handling might address empty directory memory consumption: https://github.com/rclone/rclone/pull/6561 Also: upgrade the base image to Alpine:3.19.0. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7444335..815a4f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM alpine:3.17 as base +FROM alpine:3.19 as base ## build-stage FROM base as builder -ARG VERSION=v1.60.1 +ARG VERSION=v1.65.1 RUN wget https://github.com/rclone/rclone/releases/download/$VERSION/rclone-$VERSION-linux-amd64.zip RUN unzip rclone-$VERSION-linux-amd64.zip @@ -17,7 +17,7 @@ RUN cd rclone-*-linux-amd64 && \ FROM base -ARG VERSION=v1.60.1 +ARG VERSION=v1.65.0 ## https://github.com/opencontainers/image-spec/releases/tag/v1.0.1 LABEL org.opencontainers.image.url="https://github.com/travelping/docker-rclone"