0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2024-11-17 12:51:33 -05:00
atmoz-sftp/Dockerfile

20 lines
477 B
Text
Raw Normal View History

2015-07-25 07:56:39 -04:00
FROM debian:jessie
2014-10-16 16:08:13 -04:00
MAINTAINER Adrian Dvergsdal [atmoz.net]
2014-10-07 15:34:24 -04:00
2016-06-02 08:56:30 -04:00
# - Install packages
# - OpenSSH needs /var/run/sshd to run
# - Remove generic host keys, entrypoint generates unique keys
2014-10-16 16:08:13 -04:00
RUN apt-get update && \
2016-08-06 11:44:44 -04:00
apt-get -y install openssh-server makepasswd && \
rm -rf /var/lib/apt/lists/* && \
2016-06-02 08:56:30 -04:00
mkdir -p /var/run/sshd && \
2016-08-06 11:44:44 -04:00
rm -f /etc/ssh/ssh_host_*key*
2014-10-07 15:34:24 -04:00
2014-12-31 10:35:46 -05:00
COPY sshd_config /etc/ssh/sshd_config
COPY entrypoint /
2015-07-25 07:55:33 -04:00
COPY README.md /
2014-10-07 15:34:24 -04:00
EXPOSE 22
2014-12-31 10:35:46 -05:00
ENTRYPOINT ["/entrypoint"]