From a4e05a1081ee58ff95e8e261b07a79acf108f325 Mon Sep 17 00:00:00 2001 From: Sagi Cohen Date: Mon, 11 May 2026 09:31:18 +0300 Subject: [PATCH] fix(docker): add USER root before apk install and drop back to USER orca before entrypoint --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b9b0ed5..b27f8c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM ghcr.io/orcasecurity/orca-cli:1 +USER root RUN apk --no-cache --update add bash nodejs npm sqlite sqlite-dev @@ -15,5 +16,6 @@ WORKDIR / COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh +USER orca ENTRYPOINT ["/entrypoint.sh"]