Tried to make windows docker behave, failed, added code

access using: `colcon build --cmake-args -DCMAKE_CXX_FLAGS="-DWIN_DOCKER_IS_BROKEN"`
This commit is contained in:
Niklas Halle 2025-04-02 13:17:53 +02:00
parent abf3496c78
commit 98cc5a6a3f
3 changed files with 9 additions and 2 deletions

View file

@ -9,7 +9,9 @@
"dockerfile": "../Dockerfile"
},
"runArgs": [
"--privileged" // for real-time access
"--privileged", // for real-time access
"--cap-add=sys_nice",
"--ulimit", "rtprio=99" // for real-time access
],
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},