From 27d26026663316f5a2bdbb9467a50bd8f627e0be Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Fri, 29 Nov 2024 16:34:44 +0100 Subject: [PATCH] Fix collector image build --- collector/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collector/Makefile b/collector/Makefile index b47171f..9876ab0 100644 --- a/collector/Makefile +++ b/collector/Makefile @@ -3,7 +3,9 @@ BUILDER_IMAGE=quay.io/mmoltras/devcontainers:collector .PHONY: build build: docker build \ - --tag $(BUILDER_IMAGE) $(CURDIR) + --tag $(BUILDER_IMAGE) \ + -f Containerfile \ + $(CURDIR) .PHONY: push push: build