summaryrefslogtreecommitdiff
path: root/misc/docker/debian-7-i386/Dockerfile
blob: d47d8e08a93e9dead5b3253cd0c51a28b6cfc0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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