forked from ysrc/xunfeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
52 lines (37 loc) · 1.41 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FROM ubuntu:14.04
MAINTAINER [email protected]
ENV LC_ALL C.UTF-8
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# apt and pip mirrors
# RUN sed -i 's/archive.ubuntu.com/mirrors.aliyun.com/g' /etc/apt/sources.list \
# && mkdir -p ~/.pip \
# && echo "[global]" > ~/.pip/pip.conf \
# && echo "timeout=60" >> ~/.pip/pip.conf \
# && echo "index-url = https://pypi.tuna.tsinghua.edu.cn/simple" >> ~/.pip/pip.conf
# install requirements
RUN set -x \
&& apt-get update \
&& apt-get install -y wget unzip gcc libssl-dev libffi-dev python-dev libpcap-dev python-pip
# install mongodb
ENV MONGODB_TGZ https://sec.ly.com/mirror/mongodb-linux-x86_64-3.4.0.tgz
RUN set -x \
&& wget -O /tmp/mongodb.tgz $MONGODB_TGZ \
&& mkdir -p /opt/mongodb \
&& tar zxf /tmp/mongodb.tgz -C /opt/mongodb --strip-components=1 \
&& rm -rf /tmp/mongodb.tgz
ENV PATH /opt/mongodb/bin:$PATH
# install xunfeng
RUN mkdir -p /opt/xunfeng
COPY . /opt/xunfeng
RUN set -x \
&& pip install -r /opt/xunfeng/requirements.txt \
&& ln -s /usr/lib/x86_64-linux-gnu/libpcap.so /usr/lib/x86_64-linux-gnu/libpcap.so.1
RUN set -x \
&& chmod a+x /opt/xunfeng/masscan/linux_64/masscan \
&& chmod a+x /opt/xunfeng/dockerconf/start.sh
WORKDIR /opt/xunfeng
VOLUME ["/data"]
ENTRYPOINT ["/opt/xunfeng/dockerconf/start.sh"]
EXPOSE 80
CMD ["/usr/bin/tail", "-f", "/dev/null"]