Skip to content

Commit

Permalink
build: Fix build-docker to include the full context. (#7114) (#7116)
Browse files Browse the repository at this point in the history
Fixes #7068. The build-docker rule relies on being able to run make
build-linux, but did not pull the Makefile into the build context.
There are various ways to fix this, but this was probably the smallest.

(cherry picked from commit 6538776)

Co-authored-by: M. J. Fromberger <fromberger@interchain.io>
  • Loading branch information
mergify[bot] and M. J. Fromberger committed Oct 12, 2021
1 parent b7fe214 commit 57e4e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,13 @@ build-docs:

build-docker: build-linux
cp $(BUILDDIR)/tendermint DOCKER/tendermint
docker build --label=tendermint --tag="tendermint/tendermint" DOCKER
docker build --label=tendermint --tag="tendermint/tendermint" -f DOCKER/Dockerfile .
rm -rf DOCKER/tendermint
.PHONY: build-docker


###############################################################################
### Mocks ###
### Mocks ###
###############################################################################

mockery:
Expand Down

0 comments on commit 57e4e18

Please sign in to comment.