diff options
author | Chuck Short <charles.short@ericsson.com> | 2017-07-14 08:56:09 -0500 |
---|---|---|
committer | Chuck Short <charles.short@ericsson.com> | 2017-07-14 08:58:02 -0500 |
commit | 8e55ec48defbf3cf93faef4cb842481e9090fc09 (patch) | |
tree | 28a72beaf40d5f85bd376e4481b17951deee8b83 /installation/ubuntu/src | |
parent | a0aaa333acb0f1f39530ec2c486dcffbf390210e (diff) |
Clean up Dockerfiles
Follow Docker best practices guide located at:
https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices
Also try to improve readability of the Dockerfile
Change-Id: I9ad061789fff4af2d21650783ab4659f54c729fa
Signed-off-by: Chuck Short <charles.short@ericsson.com>
Former-commit-id: 20a1f5623a96bc4491dd7efdcb1ce03bd6ed1d28
Diffstat (limited to 'installation/ubuntu/src')
-rw-r--r-- | installation/ubuntu/src/main/docker/Dockerfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/installation/ubuntu/src/main/docker/Dockerfile b/installation/ubuntu/src/main/docker/Dockerfile index 7d8e6eb3..d53240f3 100644 --- a/installation/ubuntu/src/main/docker/Dockerfile +++ b/installation/ubuntu/src/main/docker/Dockerfile @@ -12,4 +12,13 @@ RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\ if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi # Add tools needed for OpenDaylight -RUN apt-get update && apt-get install -y git openjdk-8-jdk maven mysql-client nodejs nodejs-legacy python-pip graphviz npm unzip +RUN apt-get update && apt-get install -y git \ + graphviz \ + openjdk-8-jdk \ + maven \ + mysql-client + nodejs \ + nodejs-legacy \ + npm \ + python-pip \ + unzip |