提问人:Sergey 提问时间:10/25/2023 最后编辑:Peter MortensenSergey 更新时间:11/4/2023 访问量:37
在Go Docker镜像中安装“gcloud”,找不到Python
Installing 'gcloud' inside Go Docker image, cannot find Python
问:
我有一个基于 Go 1.19 Docker 映像的 Bitbucket 管道。管道将安装 gcloud。
- curl -sSL https://sdk.cloud.google.com > /tmp/gcl && bash /tmp/gcl --install-dir=~/gcloud --disable-prompts
直到今天下午,它工作正常,但现在开始失败:
/root/gcloud/google-cloud-sdk/install.sh: 224: python: 未找到
我看到“gcloud”需要 Python 3.8。我试着添加:
apt-get -y install python3
但这无济于事。我还尝试升级到 Go 映像 1.20。
答: 暂无答案
评论