aboutsummaryrefslogtreecommitdiffstats
path: root/tools/docker/syzbot/Dockerfile
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2024-09-10 11:49:22 +0200
committerAleksandr Nogikh <nogikh@google.com>2024-09-10 11:20:46 +0000
commite1ac59f4ea80a1bbd000a998317a5321e6723b8f (patch)
tree60ccadd4281881c10a2ad5790922d4f1026b9c6d /tools/docker/syzbot/Dockerfile
parent54b25b5d0d3d50316b22b78e427012e1b7e917e0 (diff)
tools/docker: update Go in the containers
Use 1.22.7.
Diffstat (limited to 'tools/docker/syzbot/Dockerfile')
-rw-r--r--tools/docker/syzbot/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker/syzbot/Dockerfile b/tools/docker/syzbot/Dockerfile
index 3d23642fb..fdca5777b 100644
--- a/tools/docker/syzbot/Dockerfile
+++ b/tools/docker/syzbot/Dockerfile
@@ -26,7 +26,7 @@ RUN test "$(uname -m)" != x86_64 && exit 0 || \
g++-arm-linux-gnueabi g++-aarch64-linux-gnu g++-powerpc64le-linux-gnu \
g++-mips64el-linux-gnuabi64 g++-s390x-linux-gnu g++-riscv64-linux-gnu
-RUN curl https://dl.google.com/go/go1.21.4.linux-$(uname -m | sed 's/aarch64/arm64/;s/x86_64/amd64/').tar.gz | tar -C /usr/local -xz
+RUN curl https://dl.google.com/go/go1.22.7.linux-$(uname -m | sed 's/aarch64/arm64/;s/x86_64/amd64/').tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin:$PATH
# The default clang-14 is too old, install the latest one.