0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 17:51:53 +00:00

Docker: Fix Debian 7

This commit is contained in:
Ondrej Zajicek 2019-11-21 17:55:57 +01:00
parent d7de7826f6
commit f6824a6d56
2 changed files with 6 additions and 7 deletions

View File

@ -1,9 +1,8 @@
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 \

View File

@ -1,8 +1,8 @@
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 \