From b5ed6de313d084121925e43ceb09e936ef31d2a3 Mon Sep 17 00:00:00 2001 From: Kiran Kamineni Date: Wed, 10 Apr 2019 16:56:34 -0700 Subject: 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 --- deployments/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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"] -- cgit 1.2.3-korg