aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/Dockerfile
diff options
context:
space:
mode:
authorSatoshi Fujii <fujii-satoshi@jp.fujitsu.com>2019-06-17 13:25:22 +0900
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-06-19 07:16:54 +0000
commita4beafe505e61f56c4eb8db00e65985215beb837 (patch)
treed72bc349f2628e0693ae828858645c88c044a246 /catalog-fe/sdc-frontend/Dockerfile
parent044b3f89b4b72904905ae555039fbe41b2335395 (diff)
Optimize Dockerfile to reduce SDC image size
Use --chown flag at ADD command instead of executing chown Issue-ID: SDC-2366 Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> Change-Id: I5aa36da91e45bad5f6ae0bd817a3cdf8186668d8
Diffstat (limited to 'catalog-fe/sdc-frontend/Dockerfile')
-rw-r--r--catalog-fe/sdc-frontend/Dockerfile6
1 files changed, 2 insertions, 4 deletions
diff --git a/catalog-fe/sdc-frontend/Dockerfile b/catalog-fe/sdc-frontend/Dockerfile
index 63618fc878..a4273f3d8a 100644
--- a/catalog-fe/sdc-frontend/Dockerfile
+++ b/catalog-fe/sdc-frontend/Dockerfile
@@ -4,14 +4,12 @@ COPY chef-solo /root/chef-solo/
COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
-ADD onboarding*.war ${JETTY_BASE}/webapps/
+ADD --chown=jetty:jetty onboarding*.war ${JETTY_BASE}/webapps/
-ADD catalog-fe-*.war ${JETTY_BASE}/webapps/
+ADD --chown=jetty:jetty catalog-fe-*.war ${JETTY_BASE}/webapps/
USER root
-RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
-
COPY startup.sh /root/
RUN chmod 770 /root/startup.sh