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.
27 lines
504 B
Docker
27 lines
504 B
Docker
FROM ubuntu:20.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
|
|
RUN apt-get -y update
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
autoconf \
|
|
ncurses-dev \
|
|
libreadline-dev \
|
|
libssh-gcrypt-dev \
|
|
linuxdoc-tools-latex \
|
|
texlive-latex-extra \
|
|
opensp \
|
|
docbook-xsl \
|
|
xsltproc
|
|
RUN apt-get -y install \
|
|
git \
|
|
dpkg-dev \
|
|
debhelper \
|
|
apt-utils \
|
|
quilt \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools
|