Reproduces
docker_client = docker.from_env()
docker_client .images.build(path="{my-path}", tag="https://dummy:latest", dockerfile="{dockerfile-path})
Using the debugger, we can see it loop on the _post request here:
|
response = self._post( |
|
u, |
|
data=context, |
|
params=params, |
|
headers=headers, |
|
stream=True, |
|
timeout=timeout, |
|
) |
Reproduces
Using the debugger, we can see it loop on the _post request here:
docker-py/docker/api/build.py
Lines 264 to 271 in 84414e3