Created
August 1, 2022 22:59
-
-
Save jvrck/74b2f0a7271f9e3d5e7a8f3c7cc8bd7c to your computer and use it in GitHub Desktop.
Revisions
-
jvrck created this gist
Aug 1, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ # Takes args from build.args file docker build -t new-tag-name $(for i in `cat build.args`; do out+="--build-arg $i " ; done; echo $out;out="") .