File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -122,12 +122,12 @@ bin/wincat-windows-${ARCH}: windows/wincat/wincat.go
122
122
123
123
container : .container-${OS}-$(ARCH )
124
124
.container-linux-$(ARCH ) : bin/$(BIN ) -$(OS ) -$(ARCH )
125
- docker buildx build --provenance=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS} /$(ARCH ) \
125
+ docker buildx build --provenance=false --sbom=false -- pull --output=type=${OUTPUT_TYPE} --platform ${OS} /$(ARCH ) \
126
126
-t $(IMAGE ) :$(TAG ) -${OS} -$(ARCH ) --build-arg BASE=${BASE} --build-arg ARCH=$(ARCH ) .
127
127
touch $@
128
128
129
129
.container-windows-$(ARCH ) : $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
130
- docker buildx build --provenance=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS} /$(ARCH ) \
130
+ docker buildx build --provenance=false --sbom=false -- pull --output=type=${OUTPUT_TYPE} --platform ${OS} /$(ARCH ) \
131
131
-t $(IMAGE ) :$(TAG ) -${OS} -$(ARCH ) -${OSVERSION} --build-arg BASE=${BASE} -windows-${OSVERSION} -${ARCH} --build-arg ARCH=$(ARCH ) -f Dockerfile_windows .
132
132
touch $@
133
133
Original file line number Diff line number Diff line change @@ -193,6 +193,7 @@ endif
193
193
docker buildx build \
194
194
--pull \
195
195
--provenance=false \
196
+ --sbom=false \
196
197
--output=type=$(OUTPUT_TYPE) \
197
198
--platform "$(OS)/$(ARCH)" \
198
199
-t $(REGISTRY)/etcd:$(IMAGE_TAG)-$(IMAGE_SUFFIX) \
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ sub-push-%:
34
34
35
35
sub-repush-as-linux-% :
36
36
img_version=$(shell cat $* /VERSION) ; \
37
- docker buildx build --progress=plain --no-cache --pull --output=type=registry --platform " linux/amd64" \
37
+ docker buildx build --provenance=false --sbom=false -- progress=plain --no-cache --pull --output=type=registry --platform " linux/amd64" \
38
38
--build-arg SOURCE=" $( REGISTRY) /$* :$$ {img_version}" -t " $( REGISTRY) /$* :$$ {img_version}" -linux-cache $* /
39
39
40
40
all-build : $(foreach image, ${ALL_IMAGES}, sub-build-${image})
You can’t perform that action at this time.
0 commit comments