Skip to content

Commit

Permalink
Fix bug: store build args in correct dict
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Aug 16, 2022
1 parent d55dc18 commit 49fa69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/docker_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def build_image(self):
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():
Expand Down

0 comments on commit 49fa69e

Please sign in to comment.