Bug: Combine the apt-get update and apt-get install lines for docker builds.
Also combine the pip install lines.
This allows docker build system to invalidate the update cache when we install another package line later.
Change-Id: I8661e786878547bfbaf14fb69a9fbca171ff989b
diff --git a/src/test/utils/CordContainer.py b/src/test/utils/CordContainer.py
index 8ad4c2e..cc700ae 100644
--- a/src/test/utils/CordContainer.py
+++ b/src/test/utils/CordContainer.py
@@ -277,8 +277,8 @@
MAINTAINER chetan@ciena.com
LABEL RUN docker pull hbouvier/docker-radius
LABEL RUN docker run -it --name cord-radius hbouvier/docker-radius
-RUN apt-get update
-RUN apt-get -y install python python-pexpect strace
+RUN apt-get update && \
+ apt-get -y install python python-pexpect strace
WORKDIR /root
CMD ["/etc/freeradius/start-radius.py"]
'''