From 8be31629cfa2906f1306fbd69b976e28f4438ddf Mon Sep 17 00:00:00 2001 From: Daniel Dao Date: Sun, 4 Feb 2018 00:16:31 +0000 Subject: [PATCH] upgrade criu to v3.7 The current version of criu bundled in dockerfile failed to do checkpoint/restore test on my system (v4.14.14). Upgrade to latest version v3.7 and also change the repository name to point to the current official repo. Signed-off-by: Daniel Dao --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 70f147cd..dbe3d25e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,9 +38,9 @@ RUN cd /tmp \ && rm -rf /tmp/bats # install criu -ENV CRIU_VERSION 3ca8e575b49763030d3ddfec4af190a4c9f9deef +ENV CRIU_VERSION v3.7 RUN mkdir -p /usr/src/criu \ - && curl -sSL https://github.com/xemul/criu/archive/${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \ + && curl -sSL https://github.com/checkpoint-restore/criu/archive/${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \ && cd /usr/src/criu \ && make install-criu \ && rm -rf /usr/src/criu