Sto eseguendo il seguente comando in Bash:
DEBIAN_FRONTEND=noninteractive apt-get update -qq \
&& apt-get install -y build-essential git libncurses5-dev openssl \
libssl-dev fop xsltproc unixodbc-dev curl
Funziona, ma fallisce nel mezzo:
Get:96 http://security.debian.org/ jessie/updates/main linux-libc-dev amd64 3.16.7-ckt9-3~deb8u1 [991 kB]
Get:97 http://security.debian.org/ jessie/updates/main curl amd64 7.38.0-4+deb8u2 [200 kB]
Get:98 http://security.debian.org/ jessie/updates/main openjdk-7-jre amd64 7u79-2.5.5-1~deb8u1 [176 kB]
Get:99 http://http.debian.net/debian/ jessie/main libgtk2.0-0 amd64 2.24.25-3 [2301 kB]
Err http://http.debian.net/debian/ jessie/main dpkg-dev all 1.17.25
Error reading from server. Remote end closed connection [IP: 176.9.184.93 80]
Get:100 http://http.debian.net/debian/ jessie/main libatk-wrapper-java all 0.30.5-1 [30.3 kB]
Get:101 http://http.debian.net/debian/ jessie/main libatk-wrapper-java-jni amd64 0.30.5-1 [24.8 kB]
Get:102 http://http.debian.net/debian/ jessie/main libatomic1 amd64 4.9.2-10 [8992 B]
Get:103 http://http.debian.net/debian/ jessie/main libavahi-glib1 amd64 0.6.31-5 [36.4 kB]
E quindi l'intera operazione fallisce con l'errore
E: Failed to fetch http://http.debian.net/debian/pool/main/d/dpkg/dpkg-dev_1.17.25_all.deb Error reading from server. Remote end closed connection [IP: 176.9.184.93 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Sto eseguendo questo come parte di una build Docker. Il mio Dockerfile legge
FROM debian:jessie
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update -qq \
&& apt-get install -y \
build-essential \
git \
libncurses5-dev \
openssl \
libssl-dev \
fop \
xsltproc \
unixodbc-dev \
curl
e sto correndo docker build -t my-base:latest .
Il apt-get
comando ha esito positivo in alcuni casi e in alcuni casi senza che io abbia modificato nulla. E sembra di riuscire sempre quando l'eseguo sulla mia macchina di sviluppo locale, ma non riescono spesso (ma non sempre!) Quando l'eseguo su una macchina EC2. Inoltre, sembra di correre apt-get update
due volte di fila prima apt-get install
dell'aiuto. Non sono affatto positivo di quelle ultime due frasi, però.
Qualche idea su cosa potrebbe succedere? Potrebbe esserci qualcosa in apt-get che sta memorizzando un timestamp nella cache e quindi si aspetta che sia aggiornato?