summaryrefslogtreecommitdiffstats
path: root/newton/docker/Dockerfile
diff options
context:
space:
mode:
authorPratik raj <rajpratik71@gmail.com>2020-12-30 10:41:52 +0530
committerPratik raj <rajpratik71@gmail.com>2020-12-30 10:41:52 +0530
commit533c0d77decb5c86f5f06e4a8061a9042b7ce6ce (patch)
tree1485bd3f70694a82fa2a9d8e6d31fedc07a7b783 /newton/docker/Dockerfile
parent37cc7b1bb226e2d2840b093290b4afb5aa78ec16 (diff)
[docker] use `--no-cache-dir` flag to `pip` in dockerfiles to save spacehonolulu
using "--no-cache-dir" flag in pip install ,make sure downloaded packages by pip don't cached on system . This is a best practice which make sure to fetch from repo instead of using local cached one . Further , in case of Docker Containers , by restricting caching , we can reduce image size. In term of stats , it depends upon the number of python packages multiplied by their respective size . e.g for heavy packages with a lot of dependencies it reduce a lot by don't caching pip packages. Further , more detail information can be found at https://medium.com/sciforce/strategies-of-docker-images-optimization-2ca9cc5719b6 Issue-ID: MULTICLOUD-1279 Signed-off-by: Pratik Raj <rajpratik71@gmail.com> Change-Id: If01ac9167727423f65788bdf6abfd8ee0e1546cc
Diffstat (limited to 'newton/docker/Dockerfile')
-rw-r--r--newton/docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/newton/docker/Dockerfile b/newton/docker/Dockerfile
index 3a7d3095..6c477b03 100644
--- a/newton/docker/Dockerfile
+++ b/newton/docker/Dockerfile
@@ -39,7 +39,7 @@ RUN apt-get update && \
unzip -q -o -B multicloud-openstack-newton.zip && \
chmod +x /opt/newton/*.sh && \
rm -f multicloud-openstack-newton.zip && \
- pip install -r /opt/newton/requirements.txt
+ pip install --no-cache-dir -r /opt/newton/requirements.txt
WORKDIR /opt/newton
CMD /bin/sh -c /opt/newton/run.sh