Python 无法读取';https://source.developers.google.com'

Python 无法读取';https://source.developers.google.com',python,google-cloud-build,google-container-registry,google-source-repositories,Python,Google Cloud Build,Google Container Registry,Google Source Repositories,我试图在gcr.io容器中安装私有python库,即使在yaml文件中设置了gcloud的configure docker和--network=cloudbuild,也会收到错误消息 运行pip安装-e git+ 源存储库是否与云构建实例位于不同的GCP项目中?否。它位于同一项目中。 steps: - name: 'gcr.io/cloud-builders/gcloud' args: ['auth', 'configure-docker'] - name: 'gcr.io/cloud-bu

我试图在gcr.io容器中安装私有python库,即使在yaml文件中设置了gcloud的configure docker和--network=cloudbuild,也会收到错误消息

运行pip安装-e git+


源存储库是否与云构建实例位于不同的GCP项目中?否。它位于同一项目中。
steps:
- name: 'gcr.io/cloud-builders/gcloud'
  args: ['auth', 'configure-docker']
- name: 'gcr.io/cloud-builders/docker'
  args: ['build', '--network=cloudbuild', '-t', 'gcr.io/project-${_ENVIRONMENT}/cloud_run-pubsub_example', './cloud-run/file_upserter/']