From fe03957bcaea6bf89215ac986ea82baeb26ee80d Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Thu, 2 Mar 2017 22:07:34 +0300 Subject: [PATCH] Dockerfile: use CRIU 2.12 for tests Signed-off-by: Andrei Vagin --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd9be94c0..37fd2cf5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,8 @@ RUN apt-get update && apt-get install -y \ libcap-dev \ libprotobuf-dev \ libprotobuf-c0-dev \ + libnl-3-dev \ + libnet-dev \ libseccomp2/jessie-backports \ libseccomp-dev/jessie-backports \ protobuf-c-compiler \ @@ -38,7 +40,7 @@ RUN cd /tmp \ && rm -rf /tmp/bats # install criu -ENV CRIU_VERSION 1.7 +ENV CRIU_VERSION 2.12 RUN mkdir -p /usr/src/criu \ && curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \ && cd /usr/src/criu \