optimize size and time using --no-cache-dir

Using --no-cache-dir flag in pip install ,make sure dowloaded packages
by pip don't cached on system . This is a best practise which make sure
to fetch ftom repo instead of using local cached one . Further , in case
of Docker Containers , by restricing 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

Change-Id: I6d9237458fd6e64e0f11c1a4862e1e9de2c2b9aa
Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
This commit is contained in:
Pratik Raj 2020-06-18 15:21:51 +05:30
parent 92b649e6c4
commit a833721d0c
No known key found for this signature in database
GPG Key ID: 593B9C33F6A71FC3
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ skip_missing_interpreters = False
setenv = VIRTUAL_ENV={envdir}
PYTHONHASHSEED=0
install_command =
pip install {opts} {packages}
pip install --no-cache-dir {opts} {packages}
commands = ostestr {posargs}
[testenv:py34]