Update containerize templates to account for view indirection (#31321)

fixes #30965
This commit is contained in:
Massimiliano Culpo
2022-06-29 15:39:18 +02:00
committed by GitHub
parent 58b144c0da
commit 557abe04ec
3 changed files with 4 additions and 1 deletions

View File

@@ -171,11 +171,12 @@ def strip(self):
def paths(self):
"""Important paths in the image"""
Paths = collections.namedtuple('Paths', [
'environment', 'store', 'view'
'environment', 'store', 'hidden_view', 'view'
])
return Paths(
environment='/opt/spack-environment',
store='/opt/software',
hidden_view='/opt/._view',
view='/opt/view'
)