2019-11-27 02:33:01 +08:00
|
|
|
FROM centos:8
|
|
|
|
RUN yum -y upgrade
|
|
|
|
RUN yum -y install \
|
2021-05-20 01:10:09 +08:00
|
|
|
gcc \
|
|
|
|
make \
|
2019-11-27 02:33:01 +08:00
|
|
|
flex \
|
|
|
|
bison \
|
2021-05-20 01:10:09 +08:00
|
|
|
autoconf \
|
|
|
|
libssh-devel \
|
|
|
|
ncurses-devel \
|
|
|
|
readline-devel
|
|
|
|
RUN yum -y install \
|
|
|
|
git \
|
|
|
|
rpm-build \
|
|
|
|
systemd-rpm-macros \
|
|
|
|
python3 \
|
|
|
|
python3-pip \
|
|
|
|
python3-setuptools
|