From 5ef94a4ab282dbf3414afe34edf9520345e6c7ab Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 29 Jun 2022 17:02:46 -0400 Subject: [PATCH] Fix Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 572d3f1..acfd330 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ install: docker: echo "$(DOCKER_TAG)" | sed -e 's/,/\n/g' | \ while read -r tag; do \ - docker buildx build . -f Dockerfile --platform "$(DOCKER_PLATFORM)" --tag "${{tag}}" $(DOCKER_OUTPUT); \ + docker buildx build . -f Dockerfile --platform "$(DOCKER_PLATFORM)" --tag "$${tag}" $(DOCKER_OUTPUT); \ done # Create self-container Docker image with GPU support.