I have gradle task. Let us assume the following
gradle tasks returns
runTask1 … some parameters(extracted from offline jars)
runTask2 … some parameters(extracted from offline jars)
runTask3 … some parameters(extracted from offline jars)
…
runTask100 … some parameters(extracted from offline jars)
After that, I can run all the task without having any problems because it finds all the parameters. Now I have created a docker image but it is not able to run because parameters are at gradle task level.
How I can build a docker image for each task? Is there a way?
I am not sure my question came across properly. As was asking which Gradle Docker plugin you are using in your build. I am not asking about Docker itself. Please check plugins or buildscript. Once identified I think it would make more sense to raise the question for the plugin project itself.