X-Git-Url: https://gerrit.onap.org/r/gitweb?p=ccsdk%2Fdistribution.git;a=blobdiff_plain;f=opendaylight%2Fneon%2Fneon-alpine%2Fsrc%2Fmain%2Fdocker%2FDockerfile;h=bd6ff4aef005c0ad6ac587474fb3ef0653917fa6;hp=054a44f7433fdf62490b13fe9ddaeab04e7a18f9;hb=refs%2Fheads%2Fmaster;hpb=bcc615679d65ddd42f322c5e1903b794ef236dfd 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 054a44f7..00000000 --- a/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile +++ /dev/null @@ -1,20 +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 - - -# ENTRYPOINT exec /opt/opendaylight/bin/karaf -EXPOSE 8181