Skip to content

Commit 61aba20

Browse files
committed
v2.5.0a12
1 parent 7e743e7 commit 61aba20

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

workspace/dev_resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
dev_image = DockerImage(
1414
name=f"{ws_settings.image_repo}/{ws_settings.image_name}",
1515
tag=ws_settings.dev_env,
16-
enabled=ws_settings.build_images,
16+
enabled=True,
1717
path=str(ws_settings.ws_root),
1818
push_image=False,
1919
)

workspace/prd_resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
prd_image = DockerImage(
2424
name=f"{ws_settings.image_repo}/{ws_settings.image_name}",
2525
tag=ws_settings.prd_env,
26-
enabled=ws_settings.build_images,
26+
enabled=True,
2727
path=str(ws_settings.ws_root),
2828
platforms=["linux/amd64", "linux/arm64"],
2929
push_image=True,

workspace/settings.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,4 @@
3434
image_name="demo-agents",
3535
# Repository for the image
3636
image_repo="phidata",
37-
# Build images locally
38-
build_images=True,
3937
)

0 commit comments

Comments
 (0)