I'm using rails/ruby image, which already uses common-utils. But I want to override some options like making Zsh the default shell and install OhMyZsh. When I add:
"ghcr.io/devcontainers/features/common-utils:latest": {
"installOhMyZsh": true,
"configureZshAsDefaultShell": true
}
To my devcontainer.json, this common-utils usage overwrites the .zshrc coming from rails/ruby image, which should not happen based on this common-utils script.
Any thoughts why this could happen?