Skip to content

Commit 85b6068

Browse files
committed
docker with nocache
1 parent 4ec4d73 commit 85b6068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ai_ta_backend/agents/webhooks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def build_docker_image(image_name):
4747
print(f"Building docker image: {image_name}")
4848
dockerfile_path = "ai_ta_backend/agents"
4949
try:
50-
img, logs = docker_client.images.build(path=dockerfile_path, tag=image_name, quiet=False) #type:ignore
50+
img, logs = docker_client.images.build(path=dockerfile_path, tag=image_name, quiet=False, nocache=True) #type:ignore
5151
print(f"Response on creating new image: {img.attrs}")
5252
for log in logs:
5353
if 'stream' in log:

0 commit comments

Comments
 (0)