From d3efdd583dcdd5eb050ba37b335c45d975cf2c07 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 23:20:07 +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