I'm trying to run `corepack` inside devcontainers, in a `postCreateCommand`. I've upgraded `corepack` to latest: ``` npm install --yes --global corepack@latest ``` Then run: ``` corepack -v && COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack enable ``` The output I get: ``` 0.29.3 ! Corepack is about to download https://registry.npmjs.org/pnpm/-/pnpm-9.7.1.tgz ? Do you want to continue? [Y/n] ``` I've tried setting `CI` too, but also does not work. Any clues?