From b76cb94d6f72b2ffd968c34ac7d0ed9d58d36a03 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 2 May 2024 08:16:23 +0200 Subject: tools/docker: add flatbuffers packages Also update to Go1.22 while we are here. We've bumped min Go version to 1.21 in old-env, so we ought to test with 1.22 in other containers. --- tools/docker/env/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/docker/env/Dockerfile b/tools/docker/env/Dockerfile index 7a27dd40e..699923093 100644 --- a/tools/docker/env/Dockerfile +++ b/tools/docker/env/Dockerfile @@ -40,11 +40,12 @@ RUN curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - RUN add-apt-repository "deb http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-15 main" RUN apt-get update --allow-releaseinfo-change RUN apt-get install -y -q --no-install-recommends clang-15 clang-format-15 clang-tidy-15 -RUN apt autoremove -y -q +RUN apt-get install -y -q --no-install-recommends flatbuffers-compiler RUN sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100 RUN sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 100 RUN sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-15 100 RUN sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-15 100 +RUN apt autoremove -y -q # Install OS toolchains from pre-built archives. # These archives were created with: -- cgit mrf-deployment