You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The task "docker" supports a custom "Dockerfile" at the project root. However, it's apparent that the code for this plugin does not declare to Gradle that the Dockerfile is one of the task's "inputs". Because of this problem, when I change my Dockerfile, running the docker task directly or indirectly are short-circuited by Gradle's incremental build feature, since it thinks there have been no changes that are pertinent to this task.
The task "docker" supports a custom "Dockerfile" at the project root. However, it's apparent that the code for this plugin does not declare to Gradle that the Dockerfile is one of the task's "inputs". Because of this problem, when I change my Dockerfile, running the docker task directly or indirectly are short-circuited by Gradle's incremental build feature, since it thinks there have been no changes that are pertinent to this task.
https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks
I've worked around this by specifying
The text was updated successfully, but these errors were encountered: