summaryrefslogtreecommitdiffstats
path: root/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-11-04 17:06:08 -0500
committerDan Timoney <dtimoney@att.com>2020-11-04 17:06:08 -0500
commitea487b181b377bd95f99f961dfb7cbeaea42e26d (patch)
tree67c40d34f51eb73c0ececcb209675ff56e0cd722 /opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
parent5d536189b39adb7c01ebdd5b4c096d2f8b5150ad (diff)
Remove java 8 installation
Removed java 8 installation from CCSDK base containers. Also, removed obsolete ODL neon docker. Change-Id: I009193b46e8da8a2e53461dcc1ed7d7fce042461 Issue-ID: SDNC-1352 Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'opendaylight/neon/neon-alpine/src/main/docker/Dockerfile')
-rw-r--r--opendaylight/neon/neon-alpine/src/main/docker/Dockerfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile b/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
deleted file mode 100644
index bd6ff4ae..00000000
--- a/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
+++ /dev/null
@@ -1,23 +0,0 @@
-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