From f137d261767e62388f0493661ca575d253ed0222 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 17 Feb 2023 16:14:45 +0400 Subject: [PATCH] Docker build command bugfix --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4944316..8ad79c7 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ check: python3 -m pylint flaskapp/ docker: - docker build -t ${REPO_OWNER}/${REPO_NAME_SNAKE} . + docker build -t ${REPO_OWNER_LOWER}/${REPO_NAME_SNAKE} . clean: rm -rf flaskapp/__pycache__