我想使用一个远程Docker主机用Python Docker API从内存中的tar构建一个映像。
我成功地创建了一个Docker图像,当发送这样的Docker文件时:
client.images.build(fileobj=BytesIO(dockerfile_str.encode("utf-8"))
tag="some_image_name",
encoding="utf-8")
但是,当我试图设置
custom_context=True
通过一个
tar archive
根据
documentation
失败,错误为:
docker.errors.APIError: 500 Server Error: Internal Server Error ("Cannot locate specified Dockerfile: Dockerfile")
我就是这样做的:
with tarfile.open(fileobj=BytesIO(), mode="w") as tar:
dockerfile_str = """
FROM ubuntu
ENTRYPOINT ["printf", "Given command is %s"]
CMD ["not given"]
""".encode("utf-8")
dockerfile_tar_info = tarfile.TarInfo("Dockerfile")
dockerfile_tar_info.size = len(dockerfile_str)
tar.addfile(dockerfile_tar_info, BytesIO(dockerfile_str))
client = docker.DockerClient("some_url")
client.images.build(fileobj=tar.fileobj,
custom_context=True,
dockerfile="Dockerfile",
tag="some_image_name",
encoding="utf-8")
client.close()
编辑:
如果我使用磁盘上的路由:
...
with tarfile.open("tmp_1.tar", mode="w") as tar:
...
client.images.build(fileobj=tarfile.open("tmp_1.tar", mode="r").fileobj,
...
相反,我会收到以下错误消息:
docker.errors.APIError: 500 Server Error: Internal Server Error ("archive/tar: invalid tar header")