From 9e96e74c87d4e8b7cdcf723b7d158beb053966a8 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Wed, 21 Jan 2026 10:39:51 -0700 Subject: [PATCH] ci: Fixed the docker-build Justfile recipe --- justfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/justfile b/justfile index c64cf55..1705435 100644 --- a/justfile +++ b/justfile @@ -1,7 +1,5 @@ VERSION := "latest" IMG_NAME := "darkalex17/managarr" -IMAGE := "{{IMG_NAME}}:{{VERSION}}" - # List all recipes default: @@ -88,4 +86,4 @@ build build_type='debug': # Build the docker image [group: 'build'] build-docker: - @DOCKER_BUILDKIT=1 docker build --rm -t {{IMAGE}} + @DOCKER_BUILDKIT=1 docker build --rm -t {{IMG_NAME}}:{{VERSION}} .