79519534

Date: 2025-03-19 08:22:03
Score: 0.5
Natty:
Report link

You could use cache mount in the Dockerfile link to Docker documentation

The cache is cumulative across builds, so you can read and write to the cache multiple times.

In the link there is this example for Python

RUN --mount=type=cache,target=/root/.cache/pip \
    pip install -r requirements.txt
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matteo Calisti