Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kir@openvz.org>2016-10-26 07:46:37 +0300
committerPavel Emelyanov <xemul@virtuozzo.com>2016-11-02 20:35:56 +0300
commitd86a3a0e1c968479d960cfe6c907073220380dc3 (patch)
tree9210965d3d421d2b5f43b79f540588d47fde63d2 /scripts/build/Dockerfile.alpine
parente53d353e28c2876494270e19e7954b150c6f7653 (diff)
Dockerfile.alpine: add git and coretuils
git is needed as the top-level Makefile calls it. Strictly speaking git is not required to build CRIU, but it's better to have it than to see some error messages. coreutils is needed for nproc utility which is called from Dockerfile: make -j $(nproc) Before this patch, it was equivalent to "make -j" (plus an error message) which is not the best thing to do. travis-ci: success for QEMU+Dockerfile improvements + clang build Signed-off-by: Kir Kolyshkin <kir@openvz.org> Acked-by: Andrei Vagin <avagin@virtuozzo.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
Diffstat (limited to 'scripts/build/Dockerfile.alpine')
-rw-r--r--scripts/build/Dockerfile.alpine2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/Dockerfile.alpine b/scripts/build/Dockerfile.alpine
index f969b1258..ac2c4d337 100644
--- a/scripts/build/Dockerfile.alpine
+++ b/scripts/build/Dockerfile.alpine
@@ -1,6 +1,8 @@
FROM alpine:3.4
RUN apk update && apk add \
build-base \
+ coreutils \
+ git \
protobuf-c-dev \
protobuf-dev \
python \