We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d673b commit e9c2242Copy full SHA for e9c2242
repo2docker/buildpacks/conda/__init__.py
@@ -43,8 +43,10 @@ def get_build_env(self):
43
44
"""
45
if not self._nb_environment_file:
46
- # get_build_scripts locates requirements/environment files
47
- self.get_build_scripts()
+ # get_build_script_files locates requirements/environment files,
+ # populating the _nb_environment_file attribute and others.
48
+ # FIXME: move file detection and initialization of those attributes to its own step?
49
+ self.get_build_script_files()
50
51
env = super().get_build_env() + [
52
("CONDA_DIR", "${APP_BASE}/conda"),
0 commit comments