diff --git a/kernel/Makefile b/kernel/Makefile index 90a0e1a4f..95d75780c 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -119,11 +119,16 @@ show-tags: show-tag_$(2)$(3) fetch: sources/linux-$(1).tar.xz ifneq ($(2), 4.4.x) +# 'docker build' with the FROM image supplied as --build-arg +# *and* with DOCKER_CONTENT_TRUST=1 currently does not work +# (https://github.com/moby/moby/issues/34199). So, we pull the image +# with DCT and then build with DOCKER_CONTENT_TRUST explicitly set to 0. build_perf_$(2)$(3): build_$(2)$(3) docker pull $(ORG)/$(IMAGE_PERF):$(1)$(3)-$(TAG)$(SUFFIX) || \ - docker build -f Dockerfile.perf \ + (docker pull $(ORG)/$(IMAGE):$(1)$(3)-$(TAG)$(SUFFIX) && \ + DOCKER_CONTENT_TRUST=0 docker build -f Dockerfile.perf \ --build-arg IMAGE=$(ORG)/$(IMAGE):$(1)$(3)-$(TAG)$(SUFFIX) \ - --no-cache --network=none $(LABEL) -t $(ORG)/$(IMAGE_PERF):$(1)$(3)-$(TAG)$(SUFFIX) . + --no-cache --network=none $(LABEL) -t $(ORG)/$(IMAGE_PERF):$(1)$(3)-$(TAG)$(SUFFIX) .) push_perf_$(2)$(3): build_perf_$(2)$(3) @if [ x"$(DIRTY)" != x ]; then echo "Your repository is not clean. Will not push image"; exit 1; fi