0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2025-01-19 13:46:11 -05:00
atmoz-sftp/Dockerfile

21 lines
662 B
Text
Raw Normal View History

2018-01-17 22:36:21 +01:00
FROM alpine:3.7
2014-10-16 22:08:13 +02:00
MAINTAINER Adrian Dvergsdal [atmoz.net]
2014-10-07 21:34:24 +02:00
# Steps done in one RUN layer:
2016-06-02 14:56:30 +02:00
# - Install packages
2016-07-31 15:39:11 +02:00
# - Fix default group (1000 does not exist)
2016-06-02 14:56:30 +02:00
# - OpenSSH needs /var/run/sshd to run
# - Remove generic host keys, entrypoint generates unique keys
RUN echo "@community http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
apk add --no-cache bash shadow@community openssh openssh-sftp-server && \
2016-07-31 15:39:11 +02:00
sed -i 's/GROUP=1000/GROUP=100/' /etc/default/useradd && \
2016-06-02 14:56:30 +02:00
mkdir -p /var/run/sshd && \
2016-07-31 15:39:11 +02:00
rm -f /etc/ssh/ssh_host_*key*
2014-10-07 21:34:24 +02:00
2014-12-31 16:35:46 +01:00
COPY sshd_config /etc/ssh/sshd_config
COPY entrypoint /
2014-10-07 21:34:24 +02:00
EXPOSE 22
2014-12-31 16:35:46 +01:00
ENTRYPOINT ["/entrypoint"]