diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2018-12-14 13:00:43 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2018-12-14 15:35:39 -0500 |
commit | b1ac7253c276b1848a37f8e16d8aab93e643a97e (patch) | |
tree | 04c75385fa25b7d610bf013714de5d1945343dde /alpine/src/main | |
parent | 92b56035f5e56fc4bb035c44fd90415d55cfcd30 (diff) |
Port ODL Oxygen to alpine
Add new alpine-based images for OpenDaylight Oxygen container.
Change-Id: I49eb198e39a4dd71736175876e2e1af0a85d5228
Issue-ID: CCSDK-841
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'alpine/src/main')
-rw-r--r-- | alpine/src/main/docker/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/alpine/src/main/docker/Dockerfile b/alpine/src/main/docker/Dockerfile new file mode 100644 index 00000000..4bd4d476 --- /dev/null +++ b/alpine/src/main/docker/Dockerfile @@ -0,0 +1,14 @@ +# Base ubuntu with added packages needed for open ecomp +FROM alpine:3.7 +MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) + +ARG HTTP_PROXY +ARG HTTPS_PROXY + +ENV HTTP_PROXY ${HTTP_PROXY} +ENV http_proxy ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} +ENV https_proxy ${HTTPS_PROXY} + +# Add tools needed for OpenDaylight +RUN apk update && apk add bash git openjdk8 maven mysql-client nodejs py-pip graphviz unzip rsync |