From 19408f6b4c08ad20215d9fabab5f411a8ed7f10f Mon Sep 17 00:00:00 2001 From: Robbie Date: Tue, 12 Sep 2017 10:08:04 +0100 Subject: [PATCH] Create Dockerfile Once Built this works fine docker run -it cfire:latest /bin/ash --- tools/cfire/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tools/cfire/Dockerfile diff --git a/tools/cfire/Dockerfile b/tools/cfire/Dockerfile new file mode 100644 index 0000000..3400993 --- /dev/null +++ b/tools/cfire/Dockerfile @@ -0,0 +1,11 @@ +FROM python:2.7.13-alpine3.6 +RUN apk add --no-cach git bash gcc musl-dev build-base libffi libc-dev libtool autoconf automake make libffi-dev +RUN apk add --update sqlite +RUN git clone https://github.com/RhinoSecurityLabs/Security-Research.git +RUN mv /Security-Research/tools/cfire/ /cfire/ +WORKDIR /cfire/ +RUN pip install argparse requests dnspython dnslib netaddr +RUN BUILD_LIB=1 pip install ssdeep +RUN /cfire/install_deps.sh +CMD ["python cfire.py -u"] +CMD ["/bin/ash"]