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

RUN yum install -y gcc gcc-c++ make libpcap-devel epel-release patch wget socat automake autoconf libtool 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

COPY rpm_upload_tools.py /root/rpm_upload_tools.py
CMD [ "/bin/bash" ]