From f0d5e839667a3f8858a41104b313a81ddc0a8a11 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Thu, 19 Nov 2020 18:19:01 -0800 Subject: [PATCH] Dockefile: fix path to skopeo repo The current URL now gives 404. I looked in there and found that apparently Debian_Unstable becomes Debian_10. Fix the URLs accordingly. Signed-off-by: Kir Kolyshkin --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf2e43c05..18f3290ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,8 +68,8 @@ RUN mkdir -p /usr/src/criu \ && rm -rf /usr/src/criu # install skopeo -RUN echo 'deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_Unstable/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list \ - && wget -nv https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/Debian_Unstable/Release.key -O- | sudo apt-key add - \ +RUN echo 'deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list \ + && wget -nv https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/Debian_10/Release.key -O- | sudo apt-key add - \ && apt-get update \ && apt-get install -y --no-install-recommends skopeo \ && rm -rf /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list \