From 1f7544c8be4867d2a4f7e57b105c5b546b97e359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 3 Feb 2025 10:18:26 +0100 Subject: [PATCH] fix(build) fix local build docker build is now an alias for docker buildx, so we need to load the images in order for the next steps to work since images rely on previously built images. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc05716..14870c3 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,9 @@ $(addprefix buildx_,$(JITSI_SERVICES)): $(MAKE) --no-print-directory JITSI_SERVICE=$(patsubst buildx_%,%,$@) buildx build: - docker build \ + docker buildx build \ $(BUILD_ARGS) \ + --load \ --progress plain \ --tag $(JITSI_REPO)/$(JITSI_SERVICE) \ $(JITSI_SERVICE)