From f201b64f5f7948643e3a66132236e4dab561387f Mon Sep 17 00:00:00 2001 From: Tobias Kessels Date: Fri, 30 Nov 2018 23:40:31 +0100 Subject: [PATCH] added rekall dockerfile --- dockerfiles/rekall.dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dockerfiles/rekall.dockerfile diff --git a/dockerfiles/rekall.dockerfile b/dockerfiles/rekall.dockerfile new file mode 100644 index 0000000..d308a99 --- /dev/null +++ b/dockerfiles/rekall.dockerfile @@ -0,0 +1,18 @@ +FROM alpine +MAINTAINER Tabledevil +RUN apk add --no-cache -u git +RUN git clone https://github.com/google/rekall.git /rekall +RUN apk add --no-cache -u python py2-pip python2-dev +RUN apk add --no-cache -u linux-headers +RUN apk add --no-cache -u build-base +RUN apk add --no-cache -u readline-dev +RUN pip install --upgrade setuptools pip wheel +RUN pip install --editable rekall/rekall-lib +RUN sed -i -e 's/PyYAML==4.1/PyYAML==3.13/' /rekall/rekall-core/setup.py +RUN pip install --editable rekall/rekall-core +RUN pip install --editable rekall/rekall-agent +RUN apk add --no-cache -u bash +RUN apk add --no-cache -u alpine-sdk +RUN apk add --no-cache -u ncurses-dev +RUN pip install future==0.16.0 +RUN pip install --editable rekall