Switch to a name, value dict, rather than a tuple
This commit is contained in:
parent
84e5c0644e
commit
8d6cda44b5
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class ACIImage(TarImageFormatter):
|
|||
"group": config.get('Group', '') or 'root',
|
||||
"eventHandlers": [],
|
||||
"workingDirectory": config.get('WorkingDir', ''),
|
||||
"environment": [(key, value)
|
||||
"environment": [{"name": key, "value": value}
|
||||
for (key, value) in [e.split('=') for e in config.get('Env')]],
|
||||
"isolators": self._build_isolators(config),
|
||||
"mountPoints": self._build_volumes(config),
|
||||
|
|
Reference in a new issue