From 9821ea1ea9bac221034c191c4e8d0d1ce4281c6b Mon Sep 17 00:00:00 2001 From: Prakriti Mandal <98270250+prakrit55@users.noreply.github.com> Date: Fri, 1 Dec 2023 12:13:57 +0530 Subject: [PATCH] chore(deno-runtime): add read/write permissions to deno runtime image (#2618) Signed-off-by: Griffin Signed-off-by: David Ahmadov --- runtimes/deno-runtime/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/deno-runtime/entrypoint.sh b/runtimes/deno-runtime/entrypoint.sh index 00c9ea343c6..0d67180aa92 100755 --- a/runtimes/deno-runtime/entrypoint.sh +++ b/runtimes/deno-runtime/entrypoint.sh @@ -2,4 +2,4 @@ set -eu -deno run --allow-net --allow-env=DATA,SECURE_DATA,KEPTN_CONTEXT "$SCRIPT" +deno run --allow-net --allow-write --allow-read --allow-env=DATA,SECURE_DATA,KEPTN_CONTEXT "$SCRIPT"