Git clone into a specific directory is not working as expected #84
-
Hi Everyone, I am playing around with the default Here is my Dockerfile:
Here is
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi 👋 Interesting, I tried to create a dev container with the provided dev container config, and I do see plugins installed in
Okay, I do see it added to As the javascript-image, already installs "features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true,
"installOhMyZsh": false
}
}
You can see that it worked in here 👇 |
Beta Was this translation helpful? Give feedback.
-
Thanks @samruddhikhandale I created a new repo and retraced my steps and it works. Turns out the issue was due to this:
What would be the best way to keep the |
Beta Was this translation helpful? Give feedback.
Hi 👋
Interesting, I tried to create a dev container with the provided dev container config, and I do see plugins installed in
/home/node/.oh-my-zsh
Okay, I do see it added to
/root/.oh-my-zsh
folder as well, but that's because of https://github.com/devcontainers/features/blob/d53b9d1816bac7a62f9ba5f20723eef428042d1f/src/common-utils/main.sh#L519-L525 where it tries to sync oh-my-zsh configuration of user withroot
.As the javascript-image, already installs
common-utils
Feature withinstallOhMyZsh:true
, @kishan02patel you can avoid the issue with updating yourfeatures
property to 👇"fe…