2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-08 12:00:49 +00:00

Merge pull request 2043 from cgroschupp/patch-1

Add ssh binary to docker image to allow sftp repository
This commit is contained in:
Alexander Neumann 2018-10-14 21:43:04 +02:00
commit 7cbcb6d318

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