From f1cc28572523b7f5127cbb8beaad1da686cbdd02 Mon Sep 17 00:00:00 2001 From: Tobias Kaupat Date: Tue, 8 Nov 2016 00:08:26 +0100 Subject: [PATCH] Install openssh in docker container to support SFTP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6818cc..6f211de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM gliderlabs/alpine:3.3 MAINTAINER info@lobaro.com RUN echo http://nl.alpinelinux.org/alpine/v3.4/community >> /etc/apk/repositories -RUN apk add --no-cache git go nfs-utils fuse +RUN apk add --no-cache git go nfs-utils openssh fuse RUN git clone https://github.com/restic/restic \ && cd restic \ && go run build.go \