From d0efdea669914907aedc84805c5f3cf2d772430c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:59:04 +0000 Subject: [PATCH] build(docker): bump ubuntu from 22.04 to 24.04 Bumps ubuntu from 22.04 to 24.04. --- updated-dependencies: - dependency-name: ubuntu dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2246f033..627cd847 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM curlimages/curl:8.00.1 as curl RUN curl -L -o /tmp/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64 -FROM ubuntu:22.04 as build +FROM ubuntu:24.04 as build COPY --from=curl --chmod=755 /tmp/bazel /usr/local/bin/bazel