Skip to content

Commit f2b055c

Browse files
committed
Remove windows platform for docker build
1 parent 93486eb commit f2b055c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Task("DockerPush")
131131
DockerLogin(EnvironmentVariable("docker_login"), EnvironmentVariable("docker_password"));
132132

133133
StartProcess("docker", new ProcessSettings { Arguments = $"buildx create --use --name {dockerBuildContainerName}" });
134-
var dockerBuildArguments = $"buildx build {tempPublishDirectory} -f Dockerfile --push --platform linux/amd64,windows/amd64 -t {dockerImageTag} --progress plain";
134+
var dockerBuildArguments = $"buildx build {tempPublishDirectory} -f Dockerfile --push --platform linux/amd64 -t {dockerImageTag} --progress plain";
135135
StartProcess("docker", new ProcessSettings{ Arguments = dockerBuildArguments });
136136
});
137137

0 commit comments

Comments
 (0)