From 73be2117cb63d51b394835a39c9e2df3379d4f0e Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 9 Aug 2017 13:37:32 -0400 Subject: Create base Ubuntu container Create base docker container for Ubuntu 16.04 LTS with packages needed for CCSDK SLI Issue-ID: CCSDK-27 Change-Id: I17a88fc2539f58ee6ced12ea64fbce45bc16a5ff Signed-off-by: Dan Timoney --- ubuntu/src/main/docker/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ubuntu/src/main/docker/Dockerfile (limited to 'ubuntu/src') diff --git a/ubuntu/src/main/docker/Dockerfile b/ubuntu/src/main/docker/Dockerfile new file mode 100644 index 00000000..0066e761 --- /dev/null +++ b/ubuntu/src/main/docker/Dockerfile @@ -0,0 +1,15 @@ +# Base ubuntu with added packages needed for open ecomp +FROM ubuntu:16.04 +MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) + +ARG HTTP_PROXY +ARG HTTPS_PROXY + +ENV HTTP_PROXY ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} + +RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \ + 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 -- cgit 1.2.3-korg