Skip to content

Instantly share code, notes, and snippets.

@bleonard252
Created July 27, 2019 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleonard252/3359811f69fcdce4c1e5a58b19f19421 to your computer and use it in GitHub Desktop.
Save bleonard252/3359811f69fcdce4c1e5a58b19f19421 to your computer and use it in GitHub Desktop.
Dockerfiles
FROM alpine:latest
RUN apk add openssh
ENV SSHUSER username
ENV SSHHOST localhost
ENV SSHPORT 22
CMD ssh ${SSHUSER}@${SSHHOST} -p ${SSHPORT}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment