From c5277aaa559511930265670f7d0ff6fb16c4629e Mon Sep 17 00:00:00 2001 From: Matthew Orris <1466844+mattheworris@users.noreply.github.com> Date: Thu, 1 Feb 2024 04:11:19 +0800 Subject: [PATCH] fix: Update CI Base Image version to 1.1.0 (#1864) --- .github/workflows/merge-pr.yml | 2 +- tools/ci/docker/ci-base-image.dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/merge-pr.yml b/.github/workflows/merge-pr.yml index 63e93ac182..2fbdcc4aac 100644 --- a/.github/workflows/merge-pr.yml +++ b/.github/workflows/merge-pr.yml @@ -81,7 +81,7 @@ jobs: name: Publish CI Base Image env: IMAGE_NAME: ci-base-image - IMAGE_VERSION: 1.0.0 + IMAGE_VERSION: 1.1.0 BRANCH_NAME: main runs-on: ubuntu-22.04 steps: diff --git a/tools/ci/docker/ci-base-image.dockerfile b/tools/ci/docker/ci-base-image.dockerfile index 2726922635..5735a2352d 100644 --- a/tools/ci/docker/ci-base-image.dockerfile +++ b/tools/ci/docker/ci-base-image.dockerfile @@ -2,6 +2,7 @@ FROM --platform=linux/amd64 ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive LABEL maintainer="Frequency" LABEL description="Frequency CI Base Image" +# Image version is set by the CI pipeline ARG IMAGE_VERSION LABEL version="{IMAGE_VERSION}"