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:
parent
b6f2320c01
commit
c5ec0cfc3f
2 changed files with 5 additions and 7 deletions
12
Dockerfile
12
Dockerfile
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue