From 4b15ca84fafa7373f9266b832a7c05c1b220e706 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 30 Apr 2021 06:05:22 +0000 Subject: [PATCH] stdlib: docker: allow container with no command Signed-off-by: Solomon Hykes --- stdlib/docker/container.cue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/docker/container.cue b/stdlib/docker/container.cue index 29495ed0..da101a85 100644 --- a/stdlib/docker/container.cue +++ b/stdlib/docker/container.cue @@ -28,7 +28,7 @@ import ( setup: [...string] // Command to execute - command: string + command: string | *"" // Environment variables shared by all commands env: [string]: string