I have a Java app running on openshift and I am doing frequent builds using s2i as part of a CI pipeline. Since the build container is ephemeral, maven has to download all dependencies on every build, making it slow. How can I add persistent storage to my build so that the dependencies stick around between builds?
I'm using openshift container platform 3.9 and I have searched the documentation on builds and did not find anything about persistent storage.