Fix docker_image's build.args (#456)

* Add tests for build.args.

* Fix bug: store build args in correct dict

* Add changelog fragment.

* Update copyright notice.
This commit is contained in:
Felix Fontein
2022-08-16 22:37:51 +02:00
committed by GitHub
parent ad05773e34
commit d8297df7d0
5 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -696,7 +696,7 @@ class ImageManager(DockerBaseClass):
buildargs = {}
if self.buildargs:
for key, value in self.buildargs.items():
self.buildargs[key] = to_native(value)
buildargs[key] = to_native(value)
container_limits = self.container_limits or {}
for key in container_limits.keys():