diff options
author | Dan Timoney <dtimoney@att.com> | 2017-08-11 14:50:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-11 14:50:57 +0000 |
commit | 4fb0b03301911ff000bb2956039443048d2f368e (patch) | |
tree | 6b8d15cab0944c3dcc7435f25c908fde3c0956a0 /installation/ubuntu/src/main | |
parent | 74649390d13ab0fa70c6731cc4e5d1ce320a77a5 (diff) | |
parent | 8e55ec48defbf3cf93faef4cb842481e9090fc09 (diff) |
Merge "Clean up Dockerfiles"
Former-commit-id: af0f0df8ad4a87a9bdb7fc6503869c8a175e19d7
Diffstat (limited to 'installation/ubuntu/src/main')
-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 |