Skip to content

Commit fddcf5c

Browse files
Merge pull request #200 from microsoft/psl-add-2-tag
chore: add v2 tag
2 parents 6dc8bb9 + a01bd93 commit fddcf5c

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/docker-build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
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

.github/workflows/job-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

infra/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.')
6060
param 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'])

src/backend-api/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/processor/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)