From 969f73f8d975ff4e1cade6745bb315643cb0b74a Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 18 Jul 2018 14:40:32 -0700 Subject: [PATCH] Fix doc bug in builds.md (#187) --- build/builds.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/builds.md b/build/builds.md index da7dfefd4..979876bc6 100644 --- a/build/builds.md +++ b/build/builds.md @@ -130,7 +130,8 @@ spec: spec: steps: - image: ubuntu - args: ["curl https://foo.com > /var/my-volume"] + entrypoint: ["bash"] + args: ["-c", "curl https://foo.com > /var/my-volume"] volumeMounts: - name: my-volume mountPath: /var/my-volume