From 5e435f4287d1cb7df30f85bf463ef4626808f8f0 Mon Sep 17 00:00:00 2001 From: Helge Sychla Date: Sat, 17 Dec 2022 18:23:47 +0100 Subject: [PATCH] Upgrade rclone and base image This PR bumps the packaged rclone version to v1.60.1. The changelog is available [here](https://rclone.org/changelog/#v1-50-2-2019-11-19). The new version includes several fixes related to S3 storage that we need to upload files to local MinIO storage. This PR also bumps the base image version to Alpine-3.17.0. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59a8673..7314a6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine:3.11.3 as base +FROM alpine:3.17.0 as base ## build-stage FROM base as builder -ARG VERSION=v1.50.2 +ARG VERSION=v1.60.1 -RUN wget https://github.com/ncw/rclone/releases/download/$VERSION/rclone-$VERSION-linux-amd64.zip +RUN wget https://github.com/rclone/rclone/releases/download/$VERSION/rclone-$VERSION-linux-amd64.zip RUN unzip rclone-$VERSION-linux-amd64.zip RUN cd rclone-*-linux-amd64 && \ cp rclone /usr/bin/ && \ @@ -17,7 +17,7 @@ RUN cd rclone-*-linux-amd64 && \ FROM base -ARG VERSION=v1.50.2 +ARG VERSION=v1.60.1 ## https://github.com/opencontainers/image-spec/releases/tag/v1.0.1 LABEL org.opencontainers.image.url="https://github.com/travelping/docker-rclone"