Created
October 23, 2014 08:14
-
-
Save brianherman/003bb8eca9092f8bd569 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM brianherman/devbase | |
| RUN apt-get update | |
| RUN apt-get -y install openssh-server vim htop screen | |
| # For debugging | |
| RUN apt-get -y install sudo wget curl telnet tcpdump | |
| # For 32-bit experiments | |
| RUN apt-get -y install gcc-multilib | |
| # Man pages and "most" viewer: | |
| RUN apt-get install -y man most | |
| RUN mkdir /var/run/sshd | |
| ENTRYPOINT /usr/sbin/sshd -D | |
| VOLUME ["/home"] | |
| EXPOSE 22 | |
| EXPOSE 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment