mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Print test names at test time (#1343) * Remove python3-cogapp from Dockerfile Removed python3-cogapp from the Dockerfile installation. * Update .devcontainer/Dockerfile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Change base image and update Python package installation * Change container to use cpp devcontainer version 2 * Point to specific version of the devcontainer * Update devcontainer to use debian snapshot for reproducability * Fetch sources via https * Make devcontainer more robust for debian_snapshot * Make fetch non-https for snapshot * Install CMake from apt * Update devcontainers to remove CMake version * Change Clang version from 22 to 21 * Apply suggestion from @rolandreichweinbmw --------- Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
14 lines
339 B
JSON
14 lines
339 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
|
|
{
|
|
"name": "Gcc 15",
|
|
"build": {
|
|
"dockerfile": "../Dockerfile",
|
|
"args": {
|
|
"BASE_IMAGE_NAME": "gcc:15",
|
|
"DEBIAN_SNAPSHOT": "none"
|
|
},
|
|
"context": "../context"
|
|
}
|
|
}
|