mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
19 lines
467 B
Docker
19 lines
467 B
Docker
FROM debian:stretch
|
|
MAINTAINER Adrian Dvergsdal [atmoz.net]
|
|
|
|
# - Install packages
|
|
# - OpenSSH needs /var/run/sshd to run
|
|
# - Remove generic host keys, entrypoint generates unique keys
|
|
RUN apt-get update && \
|
|
apt-get -y install openssh-server && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
mkdir -p /var/run/sshd && \
|
|
rm -f /etc/ssh/ssh_host_*key*
|
|
|
|
COPY sshd_config /etc/ssh/sshd_config
|
|
COPY entrypoint /
|
|
COPY README.md /
|
|
|
|
EXPOSE 22
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|