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

Rename run to entrypoint

This commit is contained in:
Adrian Dvergsdal 2014-12-31 16:35:46 +01:00
parent b6f2320c01
commit c5ec0cfc3f
2 changed files with 5 additions and 7 deletions

View file

@ -1,7 +1,7 @@
FROM debian:wheezy
MAINTAINER Adrian Dvergsdal [atmoz.net]
# Install SSH
# Install OpenSSH
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install openssh-server && \
rm -rf /var/lib/apt/lists/*
@ -9,12 +9,10 @@ RUN apt-get update && \
# sshd needs this directory to run
RUN mkdir -p /var/run/sshd
# Add configuration and script
ADD . /root
WORKDIR /root
RUN mv sshd_config /etc/ssh/sshd_config && \
chmod +x run
# Copy configuration and entrypoint script
COPY sshd_config /etc/ssh/sshd_config
COPY entrypoint /
EXPOSE 22
ENTRYPOINT ["./run"]
ENTRYPOINT ["/entrypoint"]

View file