From 3c7ca8da1ec0d489aa5a1fe814aa42899ad212a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 29 Jan 2026 20:26:43 +0000 Subject: [PATCH] Update ubuntu Docker tag to v24 [vgpu] --- vgpu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vgpu/Dockerfile b/vgpu/Dockerfile index 88ccddf5d..c8027a8fc 100644 --- a/vgpu/Dockerfile +++ b/vgpu/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:20.04 as builder +FROM ubuntu:24.04 as builder ARG GOLANG_VERSION=1.20 ENV GOLANG_VERSION=${GOLANG_VERSION} @@ -26,7 +26,7 @@ WORKDIR /work COPY src/. . RUN go build -o vgpu-util -FROM ubuntu:20.04 +FROM ubuntu:24.04 COPY --from=builder /work/vgpu-util /usr/local/bin/vgpu-util ARG VERSION