Commit 2215f485 by Calen Pennington Committed by Edward Zarecor

Make apt-get install list in dockerfiles for trusty-common and precise-common more readable

parent f04c4946
......@@ -13,7 +13,14 @@ RUN apt-get -y install sudo
RUN useradd docker && echo "docker:docker" | chpasswd
RUN echo "docker ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
RUN mkdir -p /home/docker && chown -R docker:docker /home/docker
RUN apt-get install -y python2.7 python2.7-dev python-pip python-apt python-yaml python-jinja2 git
RUN apt-get install -y \
python2.7 \
python2.7-dev \
python-pip \
python-apt \
python-yaml \
python-jinja2 \
git
# Temporary hacking related to an SELinux bug. This issue causes, at least,
# useradd to fail silently when the -m flag is passed in. The bug affects
......
......@@ -13,7 +13,15 @@ RUN apt-get -y install sudo
RUN useradd docker && echo "docker:docker" | chpasswd
RUN echo "docker ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
RUN mkdir -p /home/docker && chown -R docker:docker /home/docker
RUN apt-get install -y python2.7 python2.7-dev python-pip python-apt python-yaml python-jinja2 git
RUN apt-get install -y \
python2.7 \
python2.7-dev \
python-pip \
python-apt \
python-yaml \
python-jinja2 \
git
USER docker
# ansible bootstrap
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment