summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 7d33c8b61928d84efbec734107d7883e36c7d889 (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM alpine
RUN apk add --no-cache openssh-server fish git

# Modified ssh conf with disabled root login and no password authentication
COPY ssh.conf /etc/ssh/sshd_config.d/

COPY run /usr/local/bin/
RUN chmod +x /usr/local/bin/run
ENTRYPOINT ["/usr/local/bin/run"]