From 6acb01f8e4462bf1d2e0cf4ea6ab767ff3597dd6 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Thu, 8 Feb 2018 14:12:59 +0100 Subject: [PATCH] Fix: sftp-server was missing Signed-off-by: Knut Ahlers --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5bfd397..6840b86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV USER_UID 1000 ENV DI_VERSION 1.2.1 -RUN apk --no-cache add bash curl openssh-server openssl shadow \ +RUN apk --no-cache add bash curl openssh-server openssh-sftp-server openssl shadow \ && mkdir /var/run/sshd && chmod 0755 /var/run/sshd \ && curl -sSfLo /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DI_VERSION}/dumb-init_${DI_VERSION}_amd64 \ && chmod +x /usr/local/bin/dumb-init \