summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-02 14:16:36 -0600
committermo khan <mo@mokhan.ca>2025-07-02 14:16:36 -0600
commitc973d9f5f47bf10489604b04ddb4c5386a7542d2 (patch)
tree2f85a9e47fb97154e16bf894e226dab1031519b7
parent4b309430194cc1238261c767cf113a9dd9d09b75 (diff)
chore: fix run-image target
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 331cce42..eba8ed3b 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ build-image:
@docker build --no-cache --tag $(IMAGE_TAG) .
run-image: build-image
- @docker run --rm -p 50051:50051 --env BIND_ADDR=0.0.0.0:50051 --init -it $(IMAGE_TAG)
+ @docker run --rm -p 50051:50051 --init -it $(IMAGE_TAG)
# gRPC testing targets
health-check: