File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767 DATE="${{ steps.date.outputs.date }}"
6868 GITHUB_RUN_NUMBER="${{ github.run_number }}"
6969 if [[ "$BRANCH" == "main" ]]; then
70- BASE_TAG="latest "
70+ BASE_TAG="latest_v2 "
7171 elif [[ "$BRANCH" == "dev" ]]; then
7272 BASE_TAG="dev"
7373 elif [[ "$BRANCH" == "demo" ]]; then
Original file line number Diff line number Diff line change @@ -424,17 +424,17 @@ jobs:
424424
425425 # Determine image tag based on branch
426426 if [[ "$BRANCH_NAME" == "main" ]]; then
427- IMAGE_TAG="latest "
428- echo "Using main branch - image tag: latest "
427+ IMAGE_TAG="latest_v2 "
428+ echo "Using main branch - image tag: latest_v2 "
429429 elif [[ "$BRANCH_NAME" == "dev" ]]; then
430430 IMAGE_TAG="dev"
431431 echo "Using dev branch - image tag: dev"
432432 elif [[ "$BRANCH_NAME" == "demo" ]]; then
433433 IMAGE_TAG="demo"
434434 echo "Using demo branch - image tag: demo"
435435 else
436- IMAGE_TAG="latest "
437- echo "Using default for branch '$BRANCH_NAME' - image tag: latest "
436+ IMAGE_TAG="latest_v2 "
437+ echo "Using default for branch '$BRANCH_NAME' - image tag: latest_v2 "
438438 fi
439439
440440 echo "Using existing Docker image tag: $IMAGE_TAG"
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ param aiDeploymentLocation string = azureAiServiceLocation
5959@description ('Optional. The host (excluding https://) of an existing container registry. This is the `loginServer` when using Azure Container Registry.' )
6060param containerRegistryHost string = 'containermigrationacr.azurecr.io'
6161
62- @description ('Optional. The image tag to use for container images. Defaults to "latest ".' )
63- param imageTag string = 'latest '
62+ @description ('Optional. The image tag to use for container images. Defaults to "latest_v2 ".' )
63+ param imageTag string = 'latest_v2 '
6464
6565@minLength (1 )
6666@allowed (['Standard' , 'GlobalStandard' ])
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ RUN tdnf update -y && tdnf install -y \
77 tar \
88 ca-certificates \
99 shadow-utils \
10+ gawk \
1011 && tdnf clean all \
1112 && curl -LsSf https://astral.sh/uv/install.sh | sh \
1213 && mv /root/.local/bin/uv /usr/local/bin/uv
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ RUN tdnf update -y && tdnf install -y \
1717 tar \
1818 ca-certificates \
1919 shadow-utils \
20+ gawk \
2021 && tdnf clean all \
2122 && curl -LsSf https://astral.sh/uv/install.sh | sh \
2223 && mv /root/.local/bin/uv /usr/local/bin/uv
You can’t perform that action at this time.
0 commit comments