From 36d4b4e11f44cddea6fdb3ce0f93a165994702aa Mon Sep 17 00:00:00 2001 From: Tony Bone Date: Mon, 12 Sep 2022 21:10:51 +0000 Subject: [PATCH] fix: Update .gitlab-ci.yml to build Dockerfile.arm32v7 instead of Dockerfile.nvidia for the docker-arm32v7-build build. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 599b3e2a..c079b39f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -56,7 +56,7 @@ docker-arm32v7-build: tag=":arm32v7-$CI_COMMIT_REF_SLUG" echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag" fi - - docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" . -f Dockerfile.nvidia + - docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" . -f Dockerfile.arm32v7 - docker push "$CI_REGISTRY_IMAGE${tag}" # Run this job in a branch where a Dockerfile exists rules: