From 2c6114cdfbf9ceba4f4a4a1122fbebd3a9b915b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 21:44:09 +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