summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: e6ada7f866fcbeefe08721f66bb21c01b2e24046 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM centos:7

RUN yum install -y gcc gcc-c++ make libpcap-devel epel-release patch wget socat automake autoconf rpm-build git && \
    yum install -y cmake3 && \
    yum install -y python3-pip && \
    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple httpie && \
    curl -sL https://sentry.io/get-cli/ | bash && \
    yum clean all && \
    rm -rf /var/cache/yum

CMD [ "/bin/bash" ]