From 5b079df40eeb9a052309f52c3fd53eb922d903a6 Mon Sep 17 00:00:00 2001 From: Niko Kurtti Date: Fri, 21 Jun 2024 17:15:30 +0300 Subject: [PATCH] Ignore baseimage when deploying --- infrastructure/deployment/deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infrastructure/deployment/deploy.sh b/infrastructure/deployment/deploy.sh index d87e18192..b89417815 100755 --- a/infrastructure/deployment/deploy.sh +++ b/infrastructure/deployment/deploy.sh @@ -220,6 +220,8 @@ get_docker_tags_from_compose_files() { IMAGE_TAG_LIST=$(cat $SPACE_SEPARATED_COMPOSE_FILE_LIST \ `# Select rows with the image tag` \ | grep image: \ + `# Ignore the baseimage file as its not used directly` \ + | grep -v ocrvs-base \ `# Only keep the image version` \ | sed "s/image://")