We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db28f3 commit e6af99dCopy full SHA for e6af99d
src/swerex/deployment/docker.py
@@ -193,6 +193,10 @@ def glibc_dockerfile(self) -> str:
193
194
def _build_image(self) -> str:
195
"""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
+ )
200
dockerfile = self.glibc_dockerfile
201
platform_arg = []
202
if self._config.platform:
0 commit comments