2016-03-03 21:23:44 +01:00
|
|
|
FROM ubuntu:trusty
|
|
|
|
RUN apt-get clean; apt-get update -y;
|
|
|
|
RUN apt-get install -y \
|
|
|
|
debianutils \
|
|
|
|
git \
|
|
|
|
make \
|
|
|
|
mercurial \
|
|
|
|
ruby \
|
|
|
|
subversion \
|
|
|
|
sudo \
|
|
|
|
unzip
|
|
|
|
RUN apt-get install -y \
|
|
|
|
python-coverage \
|
|
|
|
python-httplib2 \
|
|
|
|
python-jinja2 \
|
|
|
|
python-keyczar \
|
|
|
|
python-mock \
|
|
|
|
python-nose \
|
|
|
|
python-paramiko \
|
|
|
|
python-pip \
|
|
|
|
python-setuptools \
|
|
|
|
python-virtualenv \
|
|
|
|
python-yaml
|
|
|
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
|
|
|
RUN mkdir /etc/ansible/
|
|
|
|
RUN echo -e '[local]\nlocalhost' > /etc/ansible/hosts
|
|
|
|
ENV container=docker
|
2016-03-03 23:45:47 +01:00
|
|
|
CMD ["/sbin/init"]
|