I have a step in my docker file that installs python requirements:
COPY req.txt /req.txt
RUN pip install -r /req.txt
I change req.txt and add/remove packages to/from it frequently and rebuild the image.
Is there a way for docker to use a http cache for downloaded files?
Please do not advise me to change my docker file to something else.