File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,10 @@ setup-kind:
123
123
.PHONY : e2e-container
124
124
e2e-container :
125
125
docker buildx rm container-builder || true
126
- docker buildx create --use --name=container-builder
126
+ # only moby/buildkit:foreign-mediatype works on building Windows image now
127
+ # https://github.com/moby/buildkit/pull/1879
128
+ # Github issue: https://github.com/moby/buildkit/issues/1877
129
+ docker buildx create --use --name=container-builder --driver-opt image=moby/buildkit:v0.7.2
127
130
ifdef TEST_WINDOWS
128
131
docker buildx build --no-cache --build-arg LDFLAGS=$(LDFLAGS) -t $(IMAGE_TAG)-linux-amd64 -f docker/Dockerfile --platform="linux/amd64" --push .
129
132
docker buildx build --no-cache --build-arg LDFLAGS=$(LDFLAGS) -t $(IMAGE_TAG)-windows-1809-amd64 -f docker/windows.Dockerfile --platform="windows/amd64" --push .
You can’t perform that action at this time.
0 commit comments