Last active
November 19, 2015 10:33
-
-
Save ailispaw/c0626754d167d6dc5de6 to your computer and use it in GitHub Desktop.
CRIU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04.3 | |
RUN apt-get update && \ | |
apt-get install -y curl bsdmainutils build-essential && \ | |
apt-get install -y libprotobuf-dev libprotobuf-c0-dev protobuf-c-compiler protobuf-compiler | |
RUN mkdir /criu | |
WORKDIR /criu | |
ENV CRIU 1.7.2 | |
RUN curl http://download.openvz.org/criu/criu-$CRIU.tar.bz2 | tar -jxf- | |
RUN make -j $(nproc) -C criu-$CRIU criu | |
RUN cp criu-$CRIU/criu /usr/local/sbin/ |
Author
ailispaw
commented
Oct 16, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment