diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-06-14 12:16:06 -0400 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-06-17 19:31:51 +0000 |
commit | 24e1714f43013306c64491722811b01ad7c13c0e (patch) | |
tree | 1fb7bf133d314500250b050c9160bbcc52569daf /opendaylight | |
parent | 80c69516fe41fa9c9fad43b6bb8e36ba8d6fc211 (diff) |
Effort to reduce image size and layers
Updating parent version to 2.1.7
Issue-ID: CCSDK-3226
Change-Id: I3bb7b8a9eeef866fdc23804e06b2908d33f63c06
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
(cherry picked from commit 3d55822228b8b8d935ddd827ba7d6b1f3f292cbc)
Diffstat (limited to 'opendaylight')
-rw-r--r-- | opendaylight/aluminum/aluminum-alpine/src/main/docker/Dockerfile | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/opendaylight/aluminum/aluminum-alpine/src/main/docker/Dockerfile b/opendaylight/aluminum/aluminum-alpine/src/main/docker/Dockerfile index dd63d514..e0091984 100644 --- a/opendaylight/aluminum/aluminum-alpine/src/main/docker/Dockerfile +++ b/opendaylight/aluminum/aluminum-alpine/src/main/docker/Dockerfile @@ -1,10 +1,11 @@ -FROM onap/ccsdk-alpine-j11-image:${project.docker.latestfulltag.version} -MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) +# Prepare stage for multistage image build +## START OF STAGE0 ## +FROM onap/ccsdk-alpine-j11-image:${project.docker.latestfulltag.version} AS stage0 +USER root ENV ODL_HOME /opt/opendaylight/current # copy the opendaylight tar and expand -USER root COPY ${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz /tmp/ RUN mkdir -p /opt/odl \ && tar xzf /tmp/${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz --directory /opt/odl \ @@ -19,6 +20,21 @@ COPY system $ODL_HOME/system #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 +## END OF STAGE0 ## + +################################################# + +## This will create actual image +FROM scratch +MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) +USER root + +ENV JAVA_HOME /opt/java/openjdk +ENV ODL_HOME /opt/opendaylight/current + +# Copy Everything from stage0 +COPY --from=stage0 / / + # ENTRYPOINT exec /opt/opendaylight/bin/karaf WORKDIR $ODL_HOME USER onap |