0c4dca7ffd
.gitlab-ci.yml: + pkg targets for some distros added + artifacts added - some distros were commented out (due to errors). misc/docker/*: + Dockerfiles updated with the necessary packages.
18 lines
256 B
Docker
18 lines
256 B
Docker
FROM fedora:31
|
|
RUN dnf -y update
|
|
RUN dnf -y install \
|
|
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
|