| # Available versions: https://github.com/devcontainers/images/tree/main/src/cpp |
| FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-24.04 |
| RUN apt update && apt install -y clang-format-17 clang-tidy |
| # Bazelisk is a wrapper around installing Bazel. It will review the .bazelversion file in the workspace to determine which version of Bazel to install. |
| RUN wget https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64 -O /usr/local/bin/bazel && chmod a+rx /usr/local/bin/bazel && /usr/local/bin/bazel --version |