Skip to content

Commit 912ddfd

Browse files
authored
Merge pull request #470 from andyzhangx/win-build-pipeline
chore: fix Windows build in build pipeline
2 parents 8326812 + 03e1d3e commit 912ddfd

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ container-linux-armv7:
154154
container-windows:
155155
docker buildx build --pull --output=type=$(OUTPUT_TYPE) --platform="windows/$(ARCH)" \
156156
-t $(IMAGE_TAG)-windows-$(OSVERSION)-$(ARCH) --build-arg OSVERSION=$(OSVERSION) \
157-
--build-arg ARCH=$(ARCH) -f ./cmd/smbplugin/Windows.Dockerfile .
157+
--build-arg ARCH=$(ARCH) -f ./cmd/smbplugin/Dockerfile.Windows .
158158

159159
.PHONY: container-all
160160
container-all: smb-windows

cmd/smbplugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ az acr build -r $acrName -t $acrRepo:$ver-$linux -f cmd/smbplugin/Dockerfile --
1515

1616
win="windows-1809-amd64"
1717
make smb-windows
18-
az acr build -r $acrName -t $acrRepo:$ver-$win -f cmd/smbplugin/Windows.Dockerfile --platform windows .
18+
az acr build -r $acrName -t $acrRepo:$ver-$win -f cmd/smbplugin/Dockerfile.Windows --platform windows .
1919

2020
docker manifest create $acrRepo:$ver $acrRepo:$ver-$linux $acrRepo:$ver-$win
2121
docker manifest inspect $acrRepo:$ver

0 commit comments

Comments
 (0)