From c9acafefdc06cf0b14226669f7947aa4fda65c90 Mon Sep 17 00:00:00 2001 From: Sagi Cohen Date: Mon, 11 May 2026 09:31:17 +0300 Subject: [PATCH] fix(docker): add USER root before apk install and drop back to USER orca before entrypoint --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f7a7af..8e7f50f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,12 @@ FROM ghcr.io/orcasecurity/orca-cli:1 +USER root -RUN apk --no-cache --update add bash +RUN apk --no-cache --update add bash WORKDIR / COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh +USER orca ENTRYPOINT ["/entrypoint.sh"]