At which point in the devcontainer's lifecycle is the dotfiles repository cloned? #285
Answered
by
samruddhikhandale
Nishant (thevedicdeveloper)
asked this question in
Q&A
|
When creating a development container for a repository to import our configurations into the new environment, at which point in the devcontainer's lifecycle does the dotfiles repository get cloned and the install.sh file executed? |
Answered by
samruddhikhandale
Aug 3, 2023
Replies: 2 comments
|
Hacer efectiva la accion |
0 replies
|
Hi 👋 The dotfiles are cloned and installed after all of the "creation" phase lifecycle hooks, but before the See https://github.com/devcontainers/cli/blob/main/src/spec-common/injectHeadless.ts#L375 for reference. |
0 replies
Answer selected by
thevedicdeveloper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi 👋
The dotfiles are cloned and installed after all of the "creation" phase lifecycle hooks, but before the
postStartCommandandpostAttachCommand.See https://github.com/devcontainers/cli/blob/main/src/spec-common/injectHeadless.ts#L375 for reference.