Add ssh binary to docker image to allow sftp repository

This commit is contained in:
Christian Groschupp 2018-10-14 19:56:02 +02:00 committed by GitHub
parent 7236635cc1
commit 92ecca1808
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"]