diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-02 08:16:23 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-03 14:25:58 +0000 |
| commit | b76cb94d6f72b2ffd968c34ac7d0ed9d58d36a03 (patch) | |
| tree | 443ea0914bc860e5571706faa16fff122d9b622e /tools/docker | |
| parent | bf7ecb7cfe9145d8e169454ff6538a307124f82c (diff) | |
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.
Diffstat (limited to 'tools/docker')
| -rw-r--r-- | tools/docker/env/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
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: |
