First commit

This commit is contained in:
Christian Baer
2023-01-28 12:49:03 +01:00
parent 85668d302c
commit 6bef7d8ad8
4 changed files with 66 additions and 0 deletions

16
Dockerfile Executable file
View File

@ -0,0 +1,16 @@
FROM alpine
RUN apk add --update openssh
COPY sshd_config /etc/ssh/sshd_bastion_config
RUN echo "Include /etc/ssh/sshd_bastion_config" >> /etc/ssh/sshd_config
RUN adduser -D -s /bin/sh -H bastion
RUN passwd -u -d bastion
EXPOSE 2222
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]