Skip to content

Docker images and lazy download

Compare
Choose a tag to compare
@orodeh orodeh released this 09 Nov 21:58
· 698 commits to master since this release
9081973

Support docker images that reside on the platform.

Tasks that have an empty command section do not download files eagerly. For example, if a task only looks at size(file), it will not download the file at all.

task fileSize {
    File in_file

    command {}
    output {
        Float num_bytes = size(in_file)
    }
}