Skip to content

Commit 6ca4423

Browse files
committed
Fix: Allow to disable python standalone dir from CL
1 parent c0643b8 commit 6ca4423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/swerex/deployment/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _build_image(self) -> str:
226226
async def start(self):
227227
"""Starts the runtime."""
228228
self._pull_image()
229-
if self._config.python_standalone_dir is not None:
229+
if self._config.python_standalone_dir:
230230
image_id = self._build_image()
231231
else:
232232
image_id = self._config.image

0 commit comments

Comments
 (0)