Created
February 24, 2015 11:43
-
-
Save Elergy/781c2786a95d3714f890 to your computer and use it in GitHub Desktop.
Clone from private repo
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
FROM <smt> | |
MAINTAINER <smo> | |
RUN apt-get update | |
# Install software | |
RUN apt-get install -y git | |
# Make ssh dir | |
RUN mkdir /root/.ssh/ | |
# Copy over private key, and set permissions | |
ADD id_rsa /root/.ssh/id_rsa | |
# Create known_hosts | |
RUN touch /root/.ssh/known_hosts | |
# Add bitbuckets key | |
RUN ssh-keyscan bitbucket.org >> /root/.ssh/known_hosts | |
# Clone the conf files into the docker container | |
RUN git clone git@bitbucket.org:User/repo.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment