背景:我在 Google Vertex AI 中为每个 bigquery 数据集训练一个非常相似的模型,但我想为每个现有数据集(在 Google BigQuery 中)拥有一个自定义训练图像。从这个意义上说,我需要按需在容器注册表中以编程方式构建自定义 Docker 映像。我的想法是让一个谷歌云函数来做这件事,由 PubSub 主题触发,其中包含关于我想为哪个数据集构建训练容器的信息。所以很自然,该函数会将 Dockerfile 和相关脚本写入 Cloud Functions 中的 /tmp 文件夹(据我所知,这是唯一可写的地方)。但是,当我尝试在此脚本中实际构建容器时,显然,它找不到 /tmp 文件夹或其内容,即使它们在那里(通过日志记录操作检查)。
到目前为止令人不安的代码:
def build_container(dataset=str):
with open('container_template/Dockerfile','r') as f:
dockerfile = f.read()
dockerfile = dockerfile.replace('@dataset',dataset)
f.close()
os.makedirs(os.path.dirname('/tmp/script-location'), exist_ok=True)
with open('/tmp/Dockerfile','w') as docker_config:
docker_config.write(dockerfile)
docker_config.close()
shutil.copy('container_template/script-location/script.py','/tmp/script-location/script.py')
build_client = cloudbuild_v1.CloudBuildClient()
build = cloudbuild_v1.Build()
build.steps = [{'name':'gcr.io/cloud-builders/docker',
'args':['build', '-t', 'us-central1-docker.pkg.dev/myproject/myrepo/imagename:latest','/tmp']},
{'name':'gcr.io/cloud-builders/docker',
'args':['push', 'us-central1-docker.pkg.dev/myproject/myrepo/imagename:latest']}]
build_operation = build_client.create_build(project_id=myprojectid,build=build)
build_result = build_operation.result()
logger.info('Build Result: {}'.format(build_result.status))
当我检查云构建日志时,我得到: 步骤 #0:无法准备上下文:无法评估 Dockerfile 路径中的符号链接:lstat /tmp/Dockerfile:没有这样的文件或目录