You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the build arguments are not passed correctly: only the last one is kept. Below is the docker command line issued from the run of this workflow.
Is it because of a wrong syntax in the json description of arguments ? It seems to be working fine for a single argument but I haven't been able to make it work for more than one.
Thanks for your help.
The text was updated successfully, but these errors were encountered:
I wrote something to fix the issue (see jschmidtnj@562d9b5). It's sort of a hack, but I couldn't figure out a way to get jq to accept duplicate keys (see jqlang/jq#1636). to use it, just append -0, or a dash followed by any unique number, to the end of a duplicated flag. for 2 build-args, it would be --build-arg-0 and --build-arg-1, etc.
Using this
Dockerfile
:And this workflow:
It seems that the build arguments are not passed correctly: only the last one is kept. Below is the docker command line issued from the run of this workflow.
Is it because of a wrong syntax in the
json
description of arguments ? It seems to be working fine for a single argument but I haven't been able to make it work for more than one.Thanks for your help.
The text was updated successfully, but these errors were encountered: