Created
July 14, 2016 16:48
-
-
Save j00bar/65d11a26230eb1702f1d8c40f1a59c42 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
FROM python:2.7 | |
# Add the dockerproject repo | |
RUN apt-get update -y && \ | |
apt-get install -y apt-transport-https ca-certificates && \ | |
echo "deb https://apt.dockerproject.org/repo debian-jessie main">/etc/apt/sources.list.d/docker.list && \ | |
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D && \ | |
apt-get update -y && \ | |
apt-get install -y python-setuptools git python-pip docker-engine && \ | |
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
ADD builder.sh /usr/local/bin/builder.sh | |
RUN pip install -q --no-cache-dir 'ansible==2.1.0.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment