From 249bc953bbf89eaaebf2b688e4334e1de17cea18 Mon Sep 17 00:00:00 2001 From: Petr Fedchenkov Date: Mon, 14 Nov 2022 13:04:13 +0300 Subject: [PATCH] Update buildkit version to speed up start time Let's update buildkit version to include startup speed fix https://github.com/moby/buildkit/commit/0bb8505e86ca28508776d4b4734cdd4911c14332 Signed-off-by: Petr Fedchenkov --- src/cmd/linuxkit/pkg_build.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/cmd/linuxkit/pkg_build.go b/src/cmd/linuxkit/pkg_build.go index 6fa658e51..e31efbe54 100644 --- a/src/cmd/linuxkit/pkg_build.go +++ b/src/cmd/linuxkit/pkg_build.go @@ -14,9 +14,10 @@ import ( const ( buildersEnvVar = "LINUXKIT_BUILDERS" envVarCacheDir = "LINUXKIT_CACHE" - // this is the most recent manifest pointed to by moby/buildkit:master as of 2022-07-22, so it includes - // our required commit. Once there is a normal semver tag later than this, we should switch to it. - defaultBuilderImage = "moby/buildkit@sha256:19c4637f8809f21af01dedf65f7f0d64636165d8191381ec9d5150fccedbae48" + // this is the most recent manifest pointed to by moby/buildkit:master as of 2022-11-11, with the latest commit + // d3f26c63389c2ad66600ae5c884d6cbde627d6d8. + // Once there is a normal semver tag later than this, we should switch to it. + defaultBuilderImage = "moby/buildkit@sha256:a44defefec23a24cfc250116c4862e0e47c8d0339cefc4c7ab0ca7f3837618e3" ) func pkgBuild(args []string) {