diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..29b2224 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +# linux mint volatility +FROM linuxmintd/mint20.3-amd64 +RUN apt update -y && apt upgrade -y +RUN apt install python2 python2-dev wget git -y + +# install pip2 from pypa +RUN wget https://bootstrap.pypa.io/pip/2.7/get-pip.py +RUN python2 get-pip.py + +# pip2 setup of prereqs +RUN pip2 install --upgrade setuptools +RUN pip2 install pycrypto distorm3 + +# volatility install +RUN git clone https://github.com/volatilityfoundation/volatility +WORKDIR volatility +RUN python2 setup.py install + +WORKDIR /userspace |