aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorPratik raj <rajpratik71@gmail.com>2020-12-30 19:48:54 +0530
committerPratik raj <rajpratik71@gmail.com>2020-12-30 19:48:54 +0530
commit1d1180ceddb336c0a834b434878a5a67eabd91a9 (patch)
tree9153fb8600c4bd53823c6339e8687e5f99480234 /packages
parent223519c0c263ea2f9b2b9a94efe52d40ab2cf6f7 (diff)
[docker] use `--no-cache-dir` flag to `pip` in dockerfiles to save space
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: POLICY-2948 Signed-off-by: Pratik Raj <rajpratik71@gmail.com> Change-Id: I0c4c6ba511bca93a1389c53a91bae9b2d4546ee6
Diffstat (limited to 'packages')
-rw-r--r--packages/docker/src/main/docker/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/docker/src/main/docker/Dockerfile b/packages/docker/src/main/docker/Dockerfile
index b7f2d62e..f6cd2420 100644
--- a/packages/docker/src/main/docker/Dockerfile
+++ b/packages/docker/src/main/docker/Dockerfile
@@ -48,9 +48,9 @@ RUN apk update && \
net-tools netcat-openbsd sudo less vim openssl \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 0 \
&& update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 \
- && pip install --upgrade setuptools http-prompt \
+ && pip install --no-cache-dir --upgrade setuptools http-prompt \
&& pip uninstall -y httpie \
- && pip install httpie==1.0.3 \
+ && pip install --no-cache-dir httpie==1.0.3 \
&& rm -r /root/.cache
RUN mkdir -p $POLICY_CONFIG $POLICY_LOGS $POLICY_INSTALL_INIT && \