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.
13 lines
438 B
Docker
13 lines
438 B
Docker
FROM i386/debian:wheezy-slim
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN echo 'deb http://archive.debian.org/debian/ wheezy main' > /etc/apt/sources.list
|
|
RUN echo 'deb http://archive.debian.org/debian-security/ wheezy/updates main' >> /etc/apt/sources.list
|
|
RUN apt-get -y update -o Acquire::Check-Valid-Until=false
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
autoconf \
|
|
ncurses-dev \
|
|
libreadline-dev
|