Skip to content

Commit e6af99d

Browse files
authored
Enh: Message about building docker image (#178)
1 parent 6db28f3 commit e6af99d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/swerex/deployment/docker.py

+4
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ def glibc_dockerfile(self) -> str:
193193

194194
def _build_image(self) -> str:
195195
"""Builds image, returns image ID."""
196+
self.logger.info(
197+
f"Building image {self._config.image} to install a standalone python to {self._config.python_standalone_dir}. "
198+
"This might take a while (but you only have to do it once). To skip this step, set `python_standalone_dir` to None."
199+
)
196200
dockerfile = self.glibc_dockerfile
197201
platform_arg = []
198202
if self._config.platform:

0 commit comments

Comments
 (0)