33 Star 107 Fork 39

daxia / xunfeng

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
Medicean 提交于 2017-02-15 00:29 . Dockerfile 更新
FROM ubuntu:14.04
MAINTAINER Medici.Yan@Gmail.com
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"]
Python
1
https://gitee.com/songboy/xunfeng.git
git@gitee.com:songboy/xunfeng.git
songboy
xunfeng
xunfeng
master

搜索帮助