diff --git a/Dockerfile b/Dockerfile index acc1e59..b27f8c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ FROM ghcr.io/orcasecurity/orca-cli:1 +USER root + RUN apk --no-cache --update add bash nodejs npm sqlite sqlite-dev WORKDIR /app @@ -14,5 +16,6 @@ WORKDIR / COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh +USER orca ENTRYPOINT ["/entrypoint.sh"]