From 00ad0222cef8024f19394e2e9d5dc0e05f0ec982 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 14 Aug 2019 20:43:52 +0200 Subject: [PATCH] Dockerfile: update CRIU to v3.12 New features - build CRIU with Android NDK - C/R of - IP RAW sockets - lsm: dump and restore any SELinux process label - support restoring ghost files on readonly mounts Bugfixes - Do not lock network if running in the host network namespace - Fix RPC configuration file handling - util: don't leak file descriptors to third-party tools - small fixes here and there Improvements - travis: switch to the Ubuntu Xenial - travis-ci: Enable ia32 tests - Many improvements and bug fixes in the libcriu - Changes in the API and ABI (SONAME increased from 1 to 2) full diff: https://github.com/checkpoint-restore/criu/compare/v3.11...v3.12 Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 906c76e61e..e9cc05912d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN sed -ri "s/(httpredir|deb).debian.org/${APT_MIRROR:-deb.debian.org}/g" /etc/ FROM base AS criu ARG DEBIAN_FRONTEND # Install CRIU for checkpoint/restore support -ENV CRIU_VERSION 3.11 +ENV CRIU_VERSION 3.12 # Install dependency packages specific to criu RUN apt-get update && apt-get install -y --no-install-recommends \ libnet-dev \