File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
app/src/main/java/io/seqera/wave/cli Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,9 @@ public class App implements Runnable {
196196 @ Option (names = {"--inspect" }, paramLabel = "false" , description = "Inspect specified container image" )
197197 private boolean inspect ;
198198
199+ @ Option (names = {"--include" }, paramLabel = "false" , description = "Include one or more containers in the specified base image" )
200+ List <String > includes ;
201+
199202 public static void main (String [] args ) {
200203 try {
201204 final App app = new App ();
@@ -401,6 +404,7 @@ protected SubmitContainerTokenRequest createRequest() {
401404 .withFormat ( singularity ? "sif" : null )
402405 .withFreezeMode (freeze )
403406 .withDryRun (dryRun )
407+ .withContainerIncludes (includes )
404408 ;
405409 }
406410
You can’t perform that action at this time.
0 commit comments