Fix: sftp-server was missing

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-02-08 14:12:59 +01:00
parent 7def25b621
commit 6acb01f8e4
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -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 \