Merge "Show the rendered docker file"

This commit is contained in:
Jenkins 2016-11-11 17:03:42 +00:00 committed by Gerrit Code Review
commit e7dbbded65
1 changed files with 5 additions and 1 deletions

View File

@ -691,8 +691,12 @@ class KollaWorker(object):
with open(self.include_footer, 'r') as f:
values['include_footer'] = f.read()
content = template.render(values)
with open(os.path.join(path, 'Dockerfile'), 'w') as f:
content_path = os.path.join(path, 'Dockerfile')
with open(content_path, 'w') as f:
LOG.debug("Rendered %s into:", tpl_path)
LOG.debug(content)
f.write(content)
LOG.debug("Wrote it to %s", content_path)
def find_dockerfiles(self):
"""Recursive search for Dockerfiles in the working directory"""