Created
November 1, 2022 18:37
-
-
Save matzefriedrich/04a70606e6f08959b2ad45205f0c8694 to your computer and use it in GitHub Desktop.
Install Osquery interactive console in Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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