aaeafa8411
During docker build, host files can be passed to the docker build through docker context files. But there is no straightforward way to transfer the files from docker build to host. This feature provides a tricky way to pass the cache contents from docker build to host. It tar's the cached content and encodes them as base64 format and passes it through a log file with a special tag as 'VCSTART and VCENT'. Slave.mk in the host, it extracts the cache contents from the log and stores them in the cache folder. Cache contents are encoded as base64 format for easy passing. <!-- Please make sure you've read and understood our contributing guidelines: https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md ** Make sure all your commits include a signature generated with `git commit -s` ** If this is a bug fix, make sure your description includes "fixes #xxxx", or "closes #xxxx" or "resolves #xxxx" Please provide the following information: --> #### Why I did it #### How I did it #### How to verify it
12 lines
214 B
Django/Jinja
12 lines
214 B
Django/Jinja
# Base docker build
|
|
FROM {{IMAGENAME}}
|
|
|
|
# Copy the cache data to host
|
|
From scratch as output
|
|
COPY --from={{IMAGENAME}} /cache.tgz cache.tgz
|
|
|
|
# Clean up the cache data
|
|
FROM {{IMAGENAME}} as final
|
|
RUN rm /cache.tgz
|
|
|