mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
17 lines
366 B
Docker
17 lines
366 B
Docker
FROM debian:jessie
|
|
MAINTAINER Adrian Dvergsdal [atmoz.net]
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y install openssh-server && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# sshd needs this directory to run
|
|
RUN mkdir -p /var/run/sshd
|
|
|
|
COPY sshd_config /etc/ssh/sshd_config
|
|
COPY entrypoint /
|
|
COPY README.md /
|
|
|
|
EXPOSE 22
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|