Updated Dockerfile to use clang-format-17
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 546bddf..a101667 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,5 +1,5 @@
# 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 clang-tidy
+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