Hi All, I’m new to kotlin + gradle and now I’m str...
# gradle
j
Hi All, I’m new to kotlin + gradle and now I’m struggling with one thing. I would like to build a docker container using docker gradle plugin with the following task
Copy code
docker {
    name = project.ext.get("docker_image_name")

    pull(true)
    .
    .
    .
}
the issue is that property
docker_image_name
is evaluated on runtime. How can I access this property in a lazy way? Or am I doing something entirely wrong?