apt-get update in Docker gerät in eine Endlosschleife und erhält dieselbe Paketliste

apt-get update in Docker gerät in eine Endlosschleife und erhält dieselbe Paketliste

Ich versuche, Apromoreüber Docker zum Laufen zu kommen, habe die neuesten Docker- (19.03.0-beta4) und Docker-Compose-Versionen (1.24.0) aus ihrem Repository, außerdem habe ich Ubuntu 19.04. Die Ausgabe docker-compose upstartet den Build-Prozess, aber wenn es soweit ist apt-get update, erhält er wiederholt dieselbe Paketliste und gerät scheinbar in eine Endlosschleife. Jede Hilfe ist willkommen.

Step 3/24 : RUN apt-get -y update && sed -i -e '/^assistive_technologies=/s/^/#/' /etc/java-8-openjdk/accessibility.properties && apt-get -y install git && apt-get -y install python3 && apt-get -y install python3-pip && apt-get -y install xvfb && apt-get -y install python3-tk && apt-get -y clean
 ---> Running in fdd310721344
Ign:1 http://deb.debian.org/debian stretch InRelease
Ign:2 http://security.debian.org/debian-security stretch/updates InRelease
Ign:3 http://deb.debian.org/debian stretch-updates InRelease
Get:4 http://security.debian.org/debian-security stretch/updates Release [92.7 kB]
Get:4 http://security.debian.org/debian-security stretch/updates Release [92.7 kB]
Ign:5 http://deb.debian.org/debian stretch Release
Get:6 http://deb.debian.org/debian stretch-updates Release [89.4 kB]
Get:4 http://security.debian.org/debian-security stretch/updates Release [92.7 kB]
Get:4 http://security.debian.org/debian-security stretch/updates Release [92.7 kB]
Get:6 http://deb.debian.org/debian stretch-updates Release [89.4 kB]
Ign:6 http://deb.debian.org/debian stretch-updates Release
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]
Get:4 http://security.debian.org/debian-security stretch/updates Release [92.7 kB]
Ign:4 http://security.debian.org/debian-security stretch/updates Release
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [492 kB]
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [492 kB]
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [492 kB]
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [492 kB]
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [492 kB]
Get:7 http://deb.debian.org/debian stretch/main all Packages [3358 kB]

Antwort1

Inzwischen hat sich herausgestellt, dass das VPN die Ursache für das Problem war. Problem nun gelöst.

Antwort2

Ändern Sie Ihre RUNin diese Zeilen

RUN sed -i -e '/^assistive_technologies=/s/^/#/' /etc/java-8-openjdk/accessibility.properties 
RUN apt-get -y update && apt-get -y install \
            git \
            python3 \
            python3-pip \
            xvfb \
            python3-tk 
RUN apt-get -y clean

Versuchen Sie es erneut. Dann werden wir sehen, welcher Lauf die Schleife verursacht

verwandte Informationen