Skip to content

Commit

Permalink
fixup: dont use buildx for nomos image (#350)
Browse files Browse the repository at this point in the history
main switched all of the docker image builds to buildx, which happened
after the 1.14 release branch was cut. We are seeing an issue with the
build of this image in CI. This is a fixup to the cherry pick
to use docker build instead.
  • Loading branch information
sdowell authored Jan 13, 2023
1 parent ba069f2 commit 4b0eb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.build
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ build-images: license
--build-arg VERSION=${VERSION} \
.
@echo "+++ Building the Nomos image: $(NOMOS_TAG)"
@docker buildx build $(DOCKER_BUILD_QUIET) \
@docker build $(DOCKER_BUILD_QUIET) \
--target $(NOMOS_IMAGE) \
-t $(NOMOS_TAG) \
-f build/all/Dockerfile \
Expand Down

0 comments on commit 4b0eb90

Please sign in to comment.