From 41e03d2a96990ed8e2eb0e42f0a28deeb3981064 Mon Sep 17 00:00:00 2001 From: Chuck Short Date: Fri, 14 Jul 2017 08:29:59 -0500 Subject: Clean up Dockerfile - Alphabetize dependencies so it will be easier to maintain in the long run. - Chain commands so less layers are used. Change-Id: I068df08af662b8b6cd823f07d55c3f5294242428 Signed-off-by: Chuck Short --- docker/Dockerfile | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'docker/Dockerfile') diff --git a/docker/Dockerfile b/docker/Dockerfile index 19e5c7d2..871e8492 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -9,10 +9,12 @@ LABEL usage="docker run -e ROBOT_TEST= -ti openecompete" # Install Python Pip, Robot framework, firefox, lighttpd web server, wget RUN apt-get update && \ apt-get --assume-yes install python=2.7.11-1 && \ - apt-get --assume-yes install python-pip dbus xvfb lighttpd wget git net-tools dnsutils unzip && \ - apt-get --assume-yes install libxss1 libappindicator1 libindicator7 build-essential libssl-dev libffi-dev python-dev && \ + apt-get --assume-yes install build-essential dbus dnsutils git libappindicator1 \ + libffi-dev libindicator7 libssl-dev libxss1 \ + lighttpd net-tools python-dev python-pip unzip \ + wget xvfb && \ pip install --upgrade pip && \ - pip install robotframework && \ + pip install robotframework && \ python --version # Install chrome @@ -24,15 +26,14 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key # Copy the robot code COPY / /var/opt/OpenECOMP_ETE/ COPY lighttpd.conf /etc/lighttpd/lighttpd.conf -RUN chmod 777 /var/opt/OpenECOMP_ETE/setup.sh -RUN chmod 777 /var/opt/OpenECOMP_ETE/runTags.sh -RUN chmod 777 /var/opt/OpenECOMP_ETE/dnstraffic.sh -RUN chmod 777 /var/opt/OpenECOMP_ETE/runSoak.sh -RUN chmod 777 /var/opt/OpenECOMP_ETE/runEteTag.sh +RUN chmod 777 /var/opt/OpenECOMP_ETE/setup.sh && \ + chmod 777 /var/opt/OpenECOMP_ETE/runTags.sh && \ + chmod 777 /var/opt/OpenECOMP_ETE/dnstraffic.sh && \ + chmod 777 /var/opt/OpenECOMP_ETE/runSoak.sh && \ + chmod 777 /var/opt/OpenECOMP_ETE/runEteTag.sh # Update the ssh library so that it will run properly in the docker env -RUN cd /var/opt/OpenECOMP_ETE && ./setup.sh -RUN apt-get clean +RUN cd /var/opt/OpenECOMP_ETE && ./setup.sh && apt-get clean CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"] -- cgit 1.2.3-korg