Обложка канала

CatOps

4518 @catops

DevOps и другие неприятности.

CatOps

3 года назад
Открыть в
Docker Buildkit has a new `COPY --link` feature. With --link enabled, files added with COPY won't be copied to the previous layer, but a new layer will be created. This can help you to better cache specific things and accelerate your Docker builds. #docker
How to Accelerate Docker Builds and Optimize Caching With “COPY –link”

COPY --link is a new BuildKit feature which could substantially accelerate your Docker image builds. It works by copying files into independent image layers that don’t rely on the presence of their predecessors. You can add new content to images without the base image even existing on your system.

How-To Geek