MCPcopy Index your code
hub / github.com/devcontainers/cli / isBuildxCacheToInline

Function isBuildxCacheToInline

src/spec-node/utils.ts:97–102  ·  view source on GitHub ↗
(buildxCacheTo: string | undefined)

Source from the content-addressed store, hash-verified

95}
96
97export function isBuildxCacheToInline(buildxCacheTo: string | undefined): boolean {
98 if (!buildxCacheTo) {
99 return false;
100 }
101 return /type\s*=\s*inline/i.test(buildxCacheTo);
102}
103
104export type ParsedAuthority = DevContainerAuthority;
105

Callers 3

utils.test.tsFile · 0.90
extendImageFunction · 0.90
buildAndExtendImageFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected