Skip to content

Instantly share code, notes, and snippets.

@ekristen
Last active August 29, 2016 22:27
Show Gist options
  • Save ekristen/7b2be97df5bc8093ca2e9119b866b055 to your computer and use it in GitHub Desktop.
Save ekristen/7b2be97df5bc8093ca2e9119b866b055 to your computer and use it in GitHub Desktop.
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"]
FROM ubuntu
RUN \
apt-get update && \
apt-get install -y wget sudo supervisor python-software-properies && \
apt-get update && \
add-apt-repository ppa:saltstack/salt && \
apt-get update
EXPOSE 4505 4506
CMD ["/sbin/sshd"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment