diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..5c961d6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,6 @@ +{ + "name": "Linux C++ Dev", + "build": { + "dockerfile": "ubuntu-24.04.gnu.clang" + } +} diff --git a/.devcontainer/ubuntu-24.04.gnu.clang b/.devcontainer/ubuntu-24.04.gnu.clang new file mode 100644 index 0000000..d6cec45 --- /dev/null +++ b/.devcontainer/ubuntu-24.04.gnu.clang @@ -0,0 +1,2 @@ +# Base image with GCC, Clang, and Cppcheck preinstalled +FROM hun1er/ubuntu-24.04-cxx-build-env-clang diff --git a/.gitattributes b/.gitattributes index ccc0c7c..3366e25 100644 --- a/.gitattributes +++ b/.gitattributes @@ -173,6 +173,12 @@ CMakeLists.txt eol=lf CMakePresets.json eol=lf CMakeUserPresets.json eol=lf +############## +# Docker # +############## + +ubuntu-24.04.gnu.clang linguist-language=Dockerfile + #################### # EditorConfig # ####################