We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ec4d73 commit 85b6068Copy full SHA for 85b6068
ai_ta_backend/agents/webhooks.py
@@ -47,7 +47,7 @@ def build_docker_image(image_name):
47
print(f"Building docker image: {image_name}")
48
dockerfile_path = "ai_ta_backend/agents"
49
try:
50
- img, logs = docker_client.images.build(path=dockerfile_path, tag=image_name, quiet=False) #type:ignore
+ img, logs = docker_client.images.build(path=dockerfile_path, tag=image_name, quiet=False, nocache=True) #type:ignore
51
print(f"Response on creating new image: {img.attrs}")
52
for log in logs:
53
if 'stream' in log:
0 commit comments