Is there any way to do this?
For example, I currently always install a specific version of docker-compose in the circle.yml file, but I would like it to be installed already through the cache:
- sudo -H pip install -U docker-compose==1.3.3
I tried adding the following to circle.yml, but it does not work (nothing related to docker-compose was saved in the .cache / pip directory after installation):
cache_directories:
- /home/ubuntu/.cache/pip
source
share