Files

14 lines
438 B
Docker
Raw Permalink Normal View History

2017-08-17 15:02:35 +02:00
FROM i386/debian:wheezy-slim
ENV DEBIAN_FRONTEND noninteractive
2019-11-26 19:33:01 +01:00
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
2017-08-17 15:02:35 +02:00
RUN apt-get -y upgrade
RUN apt-get -y install \
build-essential \
flex \
bison \
2021-05-19 19:10:09 +02:00
autoconf \
2017-08-17 15:02:35 +02:00
ncurses-dev \
libreadline-dev