From 2bf560fbd7ff9651f3db807e1ea2126c5900c4aa Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Thu, 23 Sep 2021 11:22:47 -0700 Subject: [PATCH] Dockerfile: use Debian_11 repo for criu The Debian_11 was not available in this repo at the time when commit 24d318b8b was made, so we had to use Debian_10 URL for Debian 11 (apparently without any consequences). Now Debian_11 is available, so let's switch to it. Signed-off-by: Kir Kolyshkin --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4d81083e..a3f08d7f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,8 @@ ARG LIBSECCOMP_VERSION=2.5.2 FROM golang:${GO_VERSION}-bullseye ARG DEBIAN_FRONTEND=noninteractive -RUN echo 'deb https://download.opensuse.org/repositories/devel:/tools:/criu/Debian_10/ /' > /etc/apt/sources.list.d/criu.list \ - && wget -nv https://download.opensuse.org/repositories/devel:/tools:/criu/Debian_10/Release.key -O- | apt-key add - \ +RUN echo 'deb https://download.opensuse.org/repositories/devel:/tools:/criu/Debian_11/ /' > /etc/apt/sources.list.d/criu.list \ + && wget -nv https://download.opensuse.org/repositories/devel:/tools:/criu/Debian_11/Release.key -O- | apt-key add - \ && dpkg --add-architecture armel \ && dpkg --add-architecture armhf \ && dpkg --add-architecture arm64 \