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
|
2020-03-10 17:00:57 +05:30
|
|
|
RUN apt-get --no-install-recommends install -y \
|
2017-08-17 15:02:35 +02:00
|
|
|
autoconf \
|
|
|
|
build-essential \
|
|
|
|
flex \
|
|
|
|
bison \
|
|
|
|
ncurses-dev \
|
|
|
|
libreadline-dev
|