Last active
August 29, 2016 22:35
-
-
Save ekristen/baafe1f0cf2cbf7e5ac465e6eceafe60 to your computer and use it in GitHub Desktop.
Example of how to *not* construct your RUN instructions (for Medium)
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 ubuntu | |
| RUN apt-get update | |
| RUN apt-get install -y wget sudo supervisor | |
| RUN apt-get install -y python-software-properties | |
| RUN apt-get update | |
| RUN apt-get install -y openssh-server | |
| EXPOSE 4505 4506 | |
| CMD ["/sbin/sshd"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment