Skip to content

Instantly share code, notes, and snippets.

@matzefriedrich
Created November 1, 2022 18:37
Show Gist options
  • Select an option

  • Save matzefriedrich/04a70606e6f08959b2ad45205f0c8694 to your computer and use it in GitHub Desktop.

Select an option

Save matzefriedrich/04a70606e6f08959b2ad45205f0c8694 to your computer and use it in GitHub Desktop.
Install Osquery interactive console in Docker
FROM ubuntu AS osquery-base
WORKDIR /osquery
ENV PACKAGE_NAME=osquery_5.5.1-1.linux_amd64.deb
RUN apt-get update && apt-get install -y curl
RUN curl -L https://pkg.osquery.io/deb/${PACKAGE_NAME} -o ${PACKAGE_NAME} && \
apt-get install -y ./${PACKAGE_NAME}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment