renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
19 lines (18 loc) • 480 B
JavaScript
//#region lib/modules/manager/dockerfile/dep-types.ts
const knownDepTypes = [
{
depType: "syntax",
description: "The `# syntax=` parser directive at the top of the Dockerfile"
},
{
depType: "stage",
description: "An intermediate `FROM` instruction in a multi-stage build"
},
{
depType: "final",
description: "The last `FROM` instruction in the Dockerfile (the final build stage)"
}
];
//#endregion
export { knownDepTypes };
//# sourceMappingURL=dep-types.js.map