Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove hard-coded x64 platform in DockerComposePublishingContext
Co-authored-by: eerhardt <[email protected]>
  • Loading branch information
Copilot and eerhardt committed Jul 8, 2025
commit 096bc8e7d8f617f540f4522fcef26344051e36c8
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ private async Task WriteDockerComposeOutputAsync(DistributedApplicationModel mod
// Build container images for the services that require it
if (containerImagesToBuild.Count > 0)
{
var options = new ContainerBuildOptions { TargetPlatform = ContainerTargetPlatform.LinuxAmd64 };
await ImageBuilder.BuildImagesAsync(containerImagesToBuild, options: options, cancellationToken).ConfigureAwait(false);
await ImageBuilder.BuildImagesAsync(containerImagesToBuild, options: null, cancellationToken).ConfigureAwait(false);
}

var step = await activityReporter.CreateStepAsync(
Expand Down
Loading