From: Kiran Kamineni Date: Wed, 10 Apr 2019 23:56:34 +0000 (-0700) Subject: Using the --chown flag to reduce image size X-Git-Tag: 0.1.0~24^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=b5ed6de313d084121925e43ceb09e936ef31d2a3;p=multicloud%2Fk8s.git Using the --chown flag to reduce image size Patch to reduce the size of the docker image for multicloud/k8s image Reduces size by about 300mb Issue-ID: MULTICLOUD-350 Change-Id: I240c57267180c020b659795ea965f5c0877252fc Signed-off-by: Kiran Kamineni --- diff --git a/deployments/Dockerfile b/deployments/Dockerfile index 961f6766..1dcb5a30 100644 --- a/deployments/Dockerfile +++ b/deployments/Dockerfile @@ -31,10 +31,11 @@ RUN apt-get update && apt-get install -y -qq apt-transport-https curl \ && apt-get update && apt install -y -qq ovn-common WORKDIR /opt/multicloud/k8s -ADD ./k8plugin ./ -ADD ./*.so ./ RUN chown onap:onap /opt/multicloud/k8s -R +ADD --chown=onap ./k8plugin ./ +ADD --chown=onap ./bin/*.so ./ + USER onap CMD ["./k8plugin"]