Use ftp.debian.org as a "blind workaround" for trouble with ftp.de

We get a lot of build failures recently like this:

Step 3/4 : ADD  http://ftp.de.debian.org/debian/dists/stretch/Release /tmp/Release
ADD failed: Get http://ftp.de.debian.org/debian/dists/stretch/Release: dial tcp 141.76.2.4:80: i/o timeout
../make/Makefile:44: recipe for target 'docker-build' failed
make: *** [docker-build] Error 1
make: Leaving directory '<https://jenkins.osmocom.org/jenkins/job/ttcn3-sip-test/ws/debian-stretch-build'>
+ exit 1

Let's hope that this works around the connectivity problems with
ftp.de.debian.org

Change-Id: I5a0eb058d95372c44fce042de90c4127a3021a93
This commit is contained in:
Harald Welte 2019-04-17 09:10:48 +02:00
parent bdfb823f05
commit 6657ba7889
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM debian:jessie
MAINTAINER Harald Welte <laforge@gnumonks.org>
ADD http://ftp.de.debian.org/debian/dists/jessie/Release /tmp/Release
ADD http://ftp.debian.org/debian/dists/jessie/Release /tmp/Release
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \

View File

@ -2,7 +2,7 @@ FROM debian:stretch
MAINTAINER Harald Welte <laforge@gnumonks.org>
ADD http://ftp.de.debian.org/debian/dists/stretch/Release /tmp/Release
ADD http://ftp.debian.org/debian/dists/stretch/Release /tmp/Release
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \