aboutsummaryrefslogtreecommitdiff
path: root/ssh-bastion/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-bastion/Dockerfile')
-rw-r--r--ssh-bastion/Dockerfile16
1 files changed, 0 insertions, 16 deletions
diff --git a/ssh-bastion/Dockerfile b/ssh-bastion/Dockerfile
deleted file mode 100644
index 2539c7b..0000000
--- a/ssh-bastion/Dockerfile
+++ /dev/null
@@ -1,16 +0,0 @@
1FROM alpine:edge
2LABEL maintainer="Mike Crute <mike@crute.us>"
3
4RUN \
5 apk add --no-cache \
6 openssh-server-pam \
7 google-authenticator \
8 && cp /etc/ssh/sshd_config /etc/ssh/sshd_config.alpine \
9 && mkdir /var/run/sshd \
10 && chmod 700 /var/run/sshd
11
12ADD etc/ /etc/
13ADD entrypoint.sh /
14
15ENTRYPOINT [ "/entrypoint.sh" ]
16CMD [ "/usr/sbin/sshd", "-D", "-e" ]