我有"library": "git+https://123456:x-oauth-basic@github.com/mycompany/library.git"
。当我部署到docker时,此代码即可正常工作。
如何将我的github令牌设置为env变量?因为我不想公开我的github令牌
我尝试使用"library": "git+https://${GH_TOKEN}:x-oauth-basic@github.com/mycompany/library.git"
,并且在构建docker docker build --build-arg GH_TOKEN=123456
时仍然无法通过私有存储库