Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ramble (0.14 sec)

  1. docs/en/docs/deployment/docker.md

    ```Dockerfile
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    ```
    
    The file with the package requirements **won't change frequently**. So, by copying only that file, Docker will be able to **use the cache** for that step.
    
    And then, Docker will be able to **use the cache for the next step** that downloads and install those dependencies. And here's where we **save a lot of time**. ✨ ...and avoid boredom waiting. 😪😆
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top