Reported in https://github.com/devcontainers/features/issues/336#issuecomment-1360027876 ```jsonc // devcontainer.json { "image": "mcr.microsoft.com/dotnet/sdk:6.0-jammy", "features": { "ghcr.io/devcontainers/features/azure-cli:1": { "version": "latest", "installBicep": "true" }, "ghcr.io/devcontainers/features/common-utils:2": { "installZsh": true, "installOhMyZsh": true, "upgradePackages": true, "username": "vscode", "userUid": "1000", "userGid": "1000" } }, "overrideFeatureInstallOrder": [ "ghcr.io/devcontainers/features/common-utils" ], "remoteUser": "vscode" } ``` While executing the `azure-cli` Feature, it logs the following values (added loggings in [install.sh](https://github.com/devcontainers/features/blob/main/src/azure-cli/install.sh))👇 <img width="362" alt="image" src="https://user-images.githubusercontent.com/24955913/208741591-4e5f9b24-d276-4392-bf73-c3ef4be8f729.png"> Expected : The value of `_REMOTE_USER_HOME` should have been `/home/vscode`