From 3264b52d492d55e12144c33fe0700203032c0c00 Mon Sep 17 00:00:00 2001 From: Leonhardt Koepsell Date: Sun, 3 Nov 2024 15:15:29 -0600 Subject: [PATCH] Add import statements to README examples Authored-by: Leonhardt Koepsell --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 03a43f3..87cc4cc 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ plugins { Create tasks that use containers: ```kotlin +import dev.codebandits.ContainerRunTask + tasks { register("sayHello") { dockerRun { @@ -49,6 +51,8 @@ tasks { Declare containers as task inputs and outputs: ```kotlin +import dev.codebandits.ContainerRunTask + tasks { register("buildContainer") { outputImages.dockerLocal("my-image:latest")