forked from EdOverflow/megplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (16 loc) · 728 Bytes
/
Dockerfile
File metadata and controls
24 lines (16 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:16.04
LABEL maintainer="Anshuman Bhartiya"
RUN apt-get update
RUN apt-get install -y libldns-dev git build-essential wget libglib2.0-dev php7.0 nano python-requests python-dnspython python-argparse dnsutils
RUN wget https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz && \
tar xvf go1.9.2.linux-amd64.tar.gz && \
mv go /usr/local
ENV GOPATH "/root/work"
ENV PATH "$PATH:/usr/local/go/bin:$GOPATH/bin"
ENV GOBIN "$GOPATH/bin/"
RUN go get github.com/tomnomnom/meg && go get github.com/tomnomnom/waybackurls
RUN git clone https://github.com/EdOverflow/megplus.git
WORKDIR /megplus
RUN chmod 777 megplus.sh
RUN git clone https://github.com/aboul3la/Sublist3r.git
ENTRYPOINT ["./megplus.sh"]