From 313b258ffe3d86497f3513dbcffc1bad77682167 Mon Sep 17 00:00:00 2001 From: Joseph Miller Date: Tue, 24 Apr 2018 14:27:51 +1000 Subject: [PATCH] Add a Dockerfile for easy running of the tool --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d200ae4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:2.7-alpine3.7 + +RUN apk --update add git +RUN pip install boto3 netaddr dnspython + +RUN mkdir /cloudfrunt/ +WORKDIR /cloudfrunt/ +RUN git clone https://github.com/darkoperator/dnsrecon.git + +COPY cloudfrunt.py /cloudfrunt/ +ENTRYPOINT ["python", "cloudfrunt.py"]