From 92ecca1808e33351f74c48d5f35f23ff49929e8d Mon Sep 17 00:00:00 2001 From: Christian Groschupp Date: Sun, 14 Oct 2018 19:56:02 +0200 Subject: [PATCH] Add ssh binary to docker image to allow sftp repository --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bff0db753..60890891a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,6 +2,6 @@ FROM alpine:latest COPY restic /usr/bin -RUN apk add --update --no-cache ca-certificates fuse +RUN apk add --update --no-cache ca-certificates fuse openssh-client ENTRYPOINT ["/usr/bin/restic"]