Skip to content

Commit

Permalink
chore: rename IMAGE to BEE_IMAGE for make docker-build
Browse files Browse the repository at this point in the history
  • Loading branch information
gacevicljubisa committed Nov 7, 2024
1 parent 7c30e31 commit 086fe2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beekeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
RUN_TYPE: "PR RUN"
SETUP_CONTRACT_IMAGE: "ethersphere/bee-localchain"
SETUP_CONTRACT_IMAGE_TAG: "0.9.2-rc6"
BEELOCAL_BRANCH: "dev-docker-build"
BEELOCAL_BRANCH: "main"
BEEKEEPER_BRANCH: "master"
BEEKEEPER_METRICS_ENABLED: false
REACHABILITY_OVERRIDE_PUBLIC: true
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEELOCAL_BRANCH ?= main
BEEKEEPER_BRANCH ?= master
REACHABILITY_OVERRIDE_PUBLIC ?= false
BATCHFACTOR_OVERRIDE_PUBLIC ?= 5
IMAGE ?= ethersphere/bee:latest
BEE_IMAGE ?= ethersphere/bee:latest

BEE_API_VERSION ?= "$(shell grep '^ version:' openapi/Swarm.yaml | awk '{print $$2}')"

Expand Down Expand Up @@ -147,9 +147,9 @@ docker-build: binary
@echo "Build flags: $(LDFLAGS)"
mkdir -p ./tmp
cp ./dist/bee ./tmp/bee
docker build -f Dockerfile.dev -t $(IMAGE) . --no-cache
docker build -f Dockerfile.dev -t $(BEE_IMAGE) . --no-cache
rm -rf ./tmp
@echo "Docker image: $(IMAGE)"
@echo "Docker image: $(BEE_IMAGE)"

.PHONY: githooks
githooks:
Expand Down

0 comments on commit 086fe2c

Please sign in to comment.