From 6319a5ba649e277bc29c57b3599d986d8f2060b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 17:32:32 +0000 Subject: [PATCH] Bump ubuntu from 20.04 to 24.04 in /vgpu Bumps ubuntu from 20.04 to 24.04. --- updated-dependencies: - dependency-name: ubuntu dependency-version: '24.04' dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vgpu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vgpu/Dockerfile b/vgpu/Dockerfile index 88ccddf5..c8027a8f 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