mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-01 22:58:12 +00:00
feat: add jq and curl to falco-no-driver docker image
To supoprt the use of outputs that are documented in the falco examples (e.g. jq piped to curl) I would like to propose including these tools in the falco-no-driver image. They add a very minimal size and dependency to the image but would make things a lot easier for users getting started. Closes #2580 Signed-off-by: Daniel Wright <danielwright@bitgo.com>
This commit is contained in:
@@ -28,7 +28,8 @@ LABEL org.opencontainers.image.source="https://github.com/falcosecurity/falco"
|
||||
LABEL usage="docker run -i -t --privileged -v /var/run/docker.sock:/host/var/run/docker.sock -v /dev:/host/dev -v /proc:/host/proc:ro --name NAME IMAGE"
|
||||
# NOTE: for the "least privileged" use case, please refer to the official documentation
|
||||
|
||||
RUN apt-get -y update && apt-get -y install ca-certificates
|
||||
RUN apt-get -y update && apt-get -y install ca-certificates curl jq \
|
||||
&& apt clean -y && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV HOST_ROOT /host
|
||||
ENV HOME /root
|
||||
|
Reference in New Issue
Block a user