Merge pull request #2422 from kolyshkin/criu-j

Dockerfile: speed up criu build
This commit is contained in:
Mrunal Patel 2020-05-20 17:43:43 -07:00 committed by GitHub
commit 3c8da9dae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ RUN mkdir -p /usr/src/criu \
&& curl -fsSL https://github.com/checkpoint-restore/criu/archive/${CRIU_VERSION}.tar.gz | tar -C /usr/src/criu/ -xz --strip-components=1 \
&& cd /usr/src/criu \
&& echo 1 > .gitid \
&& make install-criu \
&& make -j $(nproc) install-criu \
&& cd - \
&& rm -rf /usr/src/criu