Skip to content

Commit 01d5904

Browse files
committed
Add support for container includes option
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent a29f905 commit 01d5904

File tree

1 file changed

+4
-0
lines changed
  • app/src/main/java/io/seqera/wave/cli

1 file changed

+4
-0
lines changed

app/src/main/java/io/seqera/wave/cli/App.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)