92249894b3
Add more Docker images with distributions (CentOS 8, Debian 10, Fedora 27-31, OpenSUSE 15.0 & 15.1, and Ubuntu 18.04 & 19.04). Fix some issues with older ones.
13 lines
433 B
Docker
13 lines
433 B
Docker
FROM 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 \
|
|
autoconf \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
ncurses-dev \
|
|
libreadline-dev
|