You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
243 B
10 lines
243 B
FROM alpine:3.7
|
|
|
|
RUN apk add --no-cache openssh openssh-sftp-server
|
|
|
|
RUN ssh-keygen -t rsa -b 4096 -f /etc/ssh/ssh_host_rsa_key -N '' && \
|
|
ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N ''
|
|
|
|
COPY src/ .
|
|
|
|
CMD /usr/sbin/sshd -D -e
|