Created
April 10, 2014 10:36
-
-
Save microadam/10366520 to your computer and use it in GitHub Desktop.
This file contains 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
# DOCKER-VERSION 0.7.2 | |
FROM 172.16.42.43:5000/base-nave | |
MAINTAINER Adam Duncan <[email protected]> | |
# Install ZeroMQ | |
RUN wget http://download.zeromq.org/zeromq-3.2.3.tar.gz && tar zxvf zeromq-3.2.3.tar.gz && cd zeromq-3.2.3 && ./configure && make && make install && ldconfig | |
# Install supervisor | |
RUN apt-get -y install supervisor | |
# Expose shared volumes | |
VOLUME ["/var/log/supervisor"] | |
# Add SSH keys to access private GIT repos | |
RUN mkdir -p /root/.ssh | |
ADD id_rsa /root/.ssh/id_rsa | |
RUN chmod 700 /root/.ssh/id_rsa | |
RUN echo "Host github.com\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment