Following on to #579 where it would be useful to be able to somehow reference the computed classpath from within an entrypoint definition. For example, on Gradle: ```groovy jib { container { entrypoint = ['/opt/startup.sh', '-classpath', classpath.join(':'), '-jvmflags', '"' + jvmFlags.join(' ') + '"'] } } ``` Would we want users to be able to change the classpath? Should we expose the computed main-class?