diff options
author | Haibin Huang <haibin.huang@intel.com> | 2019-03-07 11:26:42 +0800 |
---|---|---|
committer | Haibin Huang <haibin.huang@intel.com> | 2019-03-07 11:27:40 +0800 |
commit | 3eb43f5d5abeede5489f878094bd30607e8a17a0 (patch) | |
tree | fbfffe5ac1041ab9f21ff798b8b40cc37b9dddc4 /starlingx/docker | |
parent | 5c21ee369b2fffc8c859ffd1ce8532dbb410808d (diff) |
Optimize docker image footprint for starlingx
Rebase to python:2-slim
Remove unused pip packages
Change-Id: Icef1b522b47f999b5c9a18e0a1184e642fbae734
Issue-ID: MULTICLOUD-517
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Diffstat (limited to 'starlingx/docker')
-rw-r--r-- | starlingx/docker/Dockerfile | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/starlingx/docker/Dockerfile b/starlingx/docker/Dockerfile index b676e065..a987f4dd 100644 --- a/starlingx/docker/Dockerfile +++ b/starlingx/docker/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM python:2.7 +FROM python:2-slim ARG HTTP_PROXY=${HTTP_PROXY} ARG HTTPS_PROXY=${HTTPS_PROXY} @@ -32,16 +32,20 @@ ENV AAI_PASSWORD "AAI" EXPOSE 9009 RUN groupadd -r onap && useradd -r -g onap onap -WORKDIR /opt/starlingx -RUN apt-get update && apt-get install -y memcached unzip -RUN wget -O /opt/multicloud-openstack-starlingx.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-starlingx&e=zip&v=1.3.0-SNAPSHOT" && \ + +RUN apt-get update && \ + apt-get install -y memcached wget unzip gcc && \ + cd /opt/ && \ + wget -O /opt/multicloud-openstack-starlingx.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-starlingx&e=zip&v=1.3.0-SNAPSHOT" && \ unzip -q -o -B /opt/multicloud-openstack-starlingx.zip -d /opt/ && \ - rm -f /opt/multicloud-openstack-starlingx.zip + rm -f /opt/multicloud-openstack-starlingx.zip && \ + pip install -r /opt/starlingx/requirements.txt && \ + apt-get --purge remove -y wget unzip gcc && \ + apt-get -y autoremove && \ + chown onap:onap /opt/starlingx -R + RUN mkdir -p /var/log/onap/multicloud/openstack/starlingx/ -#COPY ./ . -RUN pip install -r requirements.txt -RUN chown onap:onap /opt/starlingx -R USER onap - -CMD "/opt/starlingx/run.sh" +WORKDIR /opt/starlingx +CMD /bin/sh -c "/opt/starlingx/run.sh" |