From 2fe7f54ece2a8f0461ed29aaeab41614f1f2da75 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 11 Jan 2025 13:35:10 +0000 Subject: [PATCH] build: Bump version number of Docker image No change to the Dockerfile but I observed that the 20251022-0 image was not available in the repository. Signed-off-by: Rob Bradford --- .github/workflows/docker-image.yaml | 2 +- resources/Dockerfile | 2 +- scripts/dev_cli.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index e093e2cdd..55ca4d724 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -41,7 +41,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} # generate Docker tags based on the following events/attributes tags: | - type=raw,value=20241022-0 + type=raw,value=20250111-0 type=sha - name: Build and push diff --git a/resources/Dockerfile b/resources/Dockerfile index 4c4e05f48..4425fdfdb 100644 --- a/resources/Dockerfile +++ b/resources/Dockerfile @@ -1,4 +1,4 @@ -# Copyright © 2024 Intel Corporation +# Copyright © 2025 Intel Corporation # # SPDX-License-Identifier: Apache-2.0 # diff --git a/scripts/dev_cli.sh b/scripts/dev_cli.sh index 45b30ba6e..dc2fe6a71 100755 --- a/scripts/dev_cli.sh +++ b/scripts/dev_cli.sh @@ -9,7 +9,7 @@ CLI_NAME="Cloud Hypervisor" CTR_IMAGE_TAG="ghcr.io/cloud-hypervisor/cloud-hypervisor" # Needs to match explicit version in docker-image.yaml workflow -CTR_IMAGE_VERSION="20241022-0" +CTR_IMAGE_VERSION="20250111-0" : "${CTR_IMAGE:=${CTR_IMAGE_TAG}:${CTR_IMAGE_VERSION}}" DOCKER_RUNTIME="docker"