2021-04-21 19:22:23 +08:00
|
|
|
FROM fedora:34
|
2021-05-20 01:10:09 +08:00
|
|
|
RUN dnf -y upgrade
|
2021-04-21 19:22:23 +08:00
|
|
|
RUN dnf -y install \
|
2021-05-20 01:10:09 +08:00
|
|
|
gcc \
|
|
|
|
make \
|
|
|
|
flex \
|
|
|
|
bison \
|
|
|
|
autoconf \
|
|
|
|
libssh-devel \
|
|
|
|
ncurses-devel \
|
|
|
|
readline-devel
|
|
|
|
RUN dnf -y install \
|
|
|
|
git \
|
|
|
|
rpm-build \
|
|
|
|
systemd-rpm-macros \
|
|
|
|
python3 \
|
|
|
|
python3-pip \
|
|
|
|
python3-setuptools
|