mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
20 lines
595 B
Docker
20 lines
595 B
Docker
FROM debian:bullseye
|
|
MAINTAINER Adrian Dvergsdal [atmoz.net]
|
|
|
|
# Steps done in one RUN layer:
|
|
# - Install packages
|
|
# - OpenSSH needs /var/run/sshd to run
|
|
# - Remove generic host keys, entrypoint generates unique keys
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND="noninteractive" apt-get -y install --no-install-recommends openssh-server && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
mkdir -p /var/run/sshd && \
|
|
rm -f /etc/ssh/ssh_host_*key*
|
|
|
|
COPY files/sshd_config /etc/ssh/sshd_config
|
|
COPY files/create-sftp-user /usr/local/bin/
|
|
COPY files/entrypoint /
|
|
|
|
EXPOSE 22
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|