mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
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:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user