Skip to content

Make Kaniko full-system snapshots faster in build CI

Yuto Takano requested to merge yutotakano/ci-faster-kaniko-builds into master

Taking a full-system snapshot after every stage in the Dockerfile is very slow by default, especially with React creating so many small files. By using --use-new-run and --snapshot-mode=redo, we can speed up the build time at the risk of potentially missed files in builds, but in those cases we can trigger a re-build.

Merge request reports