summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-12 14:54:31 -0600
committermo khan <mo@mokhan.ca>2025-05-12 14:54:31 -0600
commit78ccd9a4312eab7e11da4413733a12953f88a4fe (patch)
tree6663121f783ef2b073b70fba7e68779658c76325
parent06ca44433d96e1c47cb5cd00fa5306561b43bda5 (diff)
chore: do not cache docker build
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a2b982b..01d6ac4 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ test-integration: build-image
test: clean test-unit test-integration
build-image:
- @docker build --tag $(IMAGE_TAG) .
+ @docker build --no-cache --tag $(IMAGE_TAG) .
build-builder-image:
@docker build --target build --tag $(IMAGE_TAG) .