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 {
196
196
@ Option (names = {"--inspect" }, paramLabel = "false" , description = "Inspect specified container image" )
197
197
private boolean inspect ;
198
198
199
+ @ Option (names = {"--include" }, paramLabel = "false" , description = "Include one or more containers in the specified base image" )
200
+ List <String > includes ;
201
+
199
202
public static void main (String [] args ) {
200
203
try {
201
204
final App app = new App ();
@@ -401,6 +404,7 @@ protected SubmitContainerTokenRequest createRequest() {
401
404
.withFormat ( singularity ? "sif" : null )
402
405
.withFreezeMode (freeze )
403
406
.withDryRun (dryRun )
407
+ .withContainerIncludes (includes )
404
408
;
405
409
}
406
410
You can’t perform that action at this time.
0 commit comments