blob: 9510e9cf5929367663f52bb13d74341a46ccb721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 \
build-essential \
flex \
bison \
autoconf \
ncurses-dev \
libreadline-dev
|