You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened?
When using base devcontainers and features to install additional tooling, the environment variables set by the features are not correctly set for other features and commands. If a feature defines a new containerEnv, it will work. But if it extends an existing environment variable, it is not updated.
I suspect this breaks a TON of features if one depends on another.
What did you expect to happen instead?
Environment variable adjustment from features to work for other features and commands
How can we reproduce the bug? (as minimally and precisely as possible)
The following will show PYTHON_PATH and other variables set by the feature show up correctly, but PATH is not updated to the correct version for subsequent features or commands. At the start of features, it shows the correct values, but in the features, the path is incorrect as shown by the rust feature printing out PATH during setup.
Local Environment:
DevPod Version: v0.5.21
Operating System: windows
ARCH of the OS: AMD64
DevPod Provider:
Local/remote provider: docker
Anything else we need to know?
The variables are set correctly in the terminal after starting the devcontainer. The issue is only present during feature setup and commands like postCreateCommand.
The text was updated successfully, but these errors were encountered:
What happened?
When using base devcontainers and features to install additional tooling, the environment variables set by the features are not correctly set for other features and commands. If a feature defines a new
containerEnv
, it will work. But if it extends an existing environment variable, it is not updated.I suspect this breaks a TON of features if one depends on another.
What did you expect to happen instead?
Environment variable adjustment from features to work for other features and commands
How can we reproduce the bug? (as minimally and precisely as possible)
My
devcontainer.json
:The following will show
PYTHON_PATH
and other variables set by the feature show up correctly, butPATH
is not updated to the correct version for subsequent features or commands. At the start of features, it shows the correct values, but in the features, the path is incorrect as shown by the rust feature printing outPATH
during setup.Local Environment:
DevPod Provider:
Anything else we need to know?
The variables are set correctly in the terminal after starting the devcontainer. The issue is only present during feature setup and commands like
postCreateCommand
.The text was updated successfully, but these errors were encountered: