Open tramora opened 4 years ago
Pull Request welcome 👍
Hi @tramora, I was able to make it run while using Docker in Rootless mode. I'll add the required documentation soon.
thanx for your comments @kotakanbe & @Jiab77. Indeed, the users can use that kind of workarounds even in kubernetes.
# in the deployment yaml
securityContext:
runAsNonRoot: true
runAsUser: 27740
runAsGroup: 27740
allowPrivilegeEscalation: true
That's why this "issue" seems very low priority even if it should be simple to fix
In dockerfile
RUN apk add sudo && \
adduser app_user -D --shell /sbin/nologin
and in the entrypoint call
/sbin/sudo --user=app_user vuls
Hi, Currently (in version 0.12.3 at least) the process runs under root :
It seems better to create and use an applicative user instead.