Actual:
$ ls -ld /tmp
drwxr-xr-x. 1 root root 892 Sep 18 15:40 /tmp
Expected:
$ ls -ld /tmp
drwxrwxrwt. 1 root root 892 Sep 18 15:40 /tmp
It can be corrected at runtime with sudo chmod 1777 /tmp.
It causes an error when devcontainer.json features contains "ghcr.io/devcontainers/features/java:1": {"version": "21"} at least.
Actual:
Expected:
It can be corrected at runtime with
sudo chmod 1777 /tmp.It causes an error when devcontainer.json features contains
"ghcr.io/devcontainers/features/java:1": {"version": "21"}at least.