Skip to content

Commit

Permalink
fix(config): propgate dry run option to docker image
Browse files Browse the repository at this point in the history
The dry run flag was not being carried into the docker image setup in
the from static method. this cause the verify command to fail in
unexpected ways
  • Loading branch information
esatterwhite committed Mar 22, 2024
1 parent e5b3755 commit 1438ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/docker/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Image {
, quiet: opts.quiet
, publish: opts.publish
, platform: opts.platform
, dry_run: !!opts.dryRun
, dry_run: !!opts.dry_run
})
for (const [key, value] of Object.entries(opts.args)) {
image.arg(key, string.template(value)(vars))
Expand Down

0 comments on commit 1438ded

Please sign in to comment.