From a92ebc69ca2c15b0f3c59dad950946351362f024 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 27 Jul 2022 20:16:25 -0700 Subject: [PATCH] Add rclone to Docker image --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4db3afb..0872151 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,15 @@ FROM alpine:3 -RUN apk add --no-cache consul~=1.12 redis~=7.0 mariadb-client~=10.6 mariadb-connector-c~=3.1 sqlite~=3 bash~=5 restic~=0.13 +RUN apk add --no-cache \ + bash~=5 \ + consul~=1.12 \ + mariadb-client~=10.6 \ + mariadb-connector-c~=3.1 \ + rclone~=1.58 \ + redis~=7.0 \ + restic~=0.13 \ + sqlite~=3 \ + ; ARG TARGETOS ARG TARGETARCH