Commit f6824a6d authored by Ondrej Zajicek's avatar Ondrej Zajicek
Browse files

Docker: Fix Debian 7

parent d7de7826
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
FROM debian:wheezy-slim
ENV DEBIAN_FRONTEND noninteractive
RUN cat /etc/apt/sources.list
RUN echo 'deb http://archive.debian.org/debian/dists/wheezy/ wheezy main' > /etc/apt/sources.list
RUN echo 'deb http://archive.debian.org/debian/dists/wheezy/ wheezy-updates main' >> /etc/apt/sources.list
RUN apt-get -y update
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 \
+3 −3
Original line number Diff line number Diff line
FROM i386/debian:wheezy-slim
ENV DEBIAN_FRONTEND noninteractive
RUN echo 'deb http://archive.debian.org/debian/dists/wheezy/ wheezy main' > /etc/apt/sources.list
RUN echo 'deb http://archive.debian.org/debian/dists/wheezy/ wheezy-updates main' >> /etc/apt/sources.list
RUN apt-get -y update
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 \