From 252b4fce46ccc17e876585177cf490bdc257ce2f Mon Sep 17 00:00:00 2001 From: ange Date: Fri, 29 Nov 2024 06:03:49 +0000 Subject: [PATCH] fix: add missing context flag --- entrypoint.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 8025bcf..54dfdf4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -23,5 +23,6 @@ fi /kaniko/executor \ --cache="$INPUT_CACHE" \ - --dockerfile "${INPUT_DOCKERFILE##*/}" \ - --destination "$IMAGEAPP" + --context . \ + --destination "$IMAGEAPP" \ + --dockerfile "${INPUT_DOCKERFILE##*/}"