From 1de136123f864a62052f7babf18ddb45e870ec54 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Mon, 23 Mar 2020 14:58:06 -0400 Subject: Create base Sodium image Create base ODL Sodium docker image Change-Id: Ibfc259529ffeb90d73ea897f9a2ae7a1a79a6b79 Issue-ID: CCSDK-2184 Signed-off-by: Dan Timoney --- .../sodium-alpine/src/main/docker/Dockerfile | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 opendaylight/sodium/sodium-alpine/src/main/docker/Dockerfile (limited to 'opendaylight/sodium/sodium-alpine/src') diff --git a/opendaylight/sodium/sodium-alpine/src/main/docker/Dockerfile b/opendaylight/sodium/sodium-alpine/src/main/docker/Dockerfile new file mode 100644 index 00000000..be35e54f --- /dev/null +++ b/opendaylight/sodium/sodium-alpine/src/main/docker/Dockerfile @@ -0,0 +1,23 @@ +FROM onap/ccsdk-alpine-image:${project.docker.latestfulltag.version} +MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) +ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk +ENV ODL_HOME /opt/opendaylight/current + +# make python2 also available up until OpenDaylight migrates to python3 +RUN apk add --no-cache py2-pip + +# copy the opendaylight tar and expand +COPY ${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz /tmp/ +RUN mkdir -p /opt/odl \ + && tar zxvf /tmp/${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz --directory /opt/odl \ + && rm -rf /tmp/${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz \ + && mv /opt/odl/${odl.karaf.artifactId}-${ccsdk.opendaylight.version} /opt/opendaylight \ + && ln -s /opt/opendaylight /opt/opendaylight/${odl.karaf.artifactId}-${ccsdk.opendaylight.version} \ + && ln -s /opt/opendaylight /opt/opendaylight/current + +# Add missing scripts see SDNC-1056 +#COPY configure_cluster.sh configure-cluster-ipdetect.sh custom_shard_config.txt set_persistence.sh $ODL_HOME/bin/ +#RUN chmod 755 $ODL_HOME/bin/configure_cluster.sh $ODL_HOME/bin/configure-cluster-ipdetect.sh $ODL_HOME/bin/set_persistence.sh $ODL_HOME/bin/custom_shard_config.txt + +# ENTRYPOINT exec /opt/opendaylight/bin/karaf +EXPOSE 8181 -- cgit 1.2.3-korg