We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa986da commit 685f739Copy full SHA for 685f739
1 file changed
apps/cli/src/builder/docker.ts
@@ -51,7 +51,8 @@ const buildImage = async (options: ImageBuildOptions): Promise<string> => {
51
];
52
53
// set tags for the image built
54
- args.push(...tags.flatMap((tag) => ["--tag", tag]));
+ // args.push(...tags.flatMap((tag) => ["--tag", tag]));
55
+ args.push("--tag", "machine-image");
56
57
// set build args
58
args.push(...buildArgs.flatMap((arg) => ["--build-arg", arg]));
@@ -84,7 +85,7 @@ const buildImage = async (options: ImageBuildOptions): Promise<string> => {
84
85
) as BuildxMetadata;
86
87
reporter?.(JSON.stringify(metadata, null, 2));
- return metadata["containerimage.digest"] ?? "";
88
+ return metadata["image.name"] ?? "";
89
};
90
91
/**
0 commit comments