Skip to content

Commit

Permalink
Upgrade rclone and base image
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hsychla authored and mgumz committed Dec 18, 2022
1 parent 99b7a19 commit 5e435f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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/ && \
Expand All @@ -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"
Expand Down

0 comments on commit 5e435f4

Please sign in to comment.