From 1ecf6e230dd09c8fae02f18e8914d6ea9693d341 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 19 Dec 2016 02:19:51 +0100 Subject: [PATCH] Update criu to 2.9 criu 2.8 and 2.9 contain various fixes, so updating the version in the Dockerfile to match the newer version. Signed-off-by: Sebastiaan van Stijn Upstream-commit: c8f919a425caf9bc86513f5e2108087ad64d3927 Component: engine --- components/engine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/Dockerfile b/components/engine/Dockerfile index 9d66ba95ba..1d2adcda97 100644 --- a/components/engine/Dockerfile +++ b/components/engine/Dockerfile @@ -155,7 +155,7 @@ RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint && go install -v github.com/golang/lint/golint # Install CRIU for checkpoint/restore support -ENV CRIU_VERSION 2.2 +ENV CRIU_VERSION 2.9 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 \