2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 22:05:36 +00:00

dockerfile: add Dockerfile.tmpl

Fixes: afae962c66 ("dockerfile: extract a common part in one file")
Signed-off-by: Andrey Vagin <avagin@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Andrey Vagin
2016-02-19 14:51:09 -08:00
committed by Pavel Emelyanov
parent 6c5bde3b5b
commit 4322e4c35c

View File

@@ -0,0 +1,18 @@
RUN apt-get update
RUN apt-get update && apt-get install -y \
build-essential \
protobuf-c-compiler \
libprotobuf-c0-dev \
libprotobuf-dev \
bsdmainutils \
protobuf-compiler \
python-minimal \
libaio-dev \
iptables \
libnl-3-dev
COPY . /criu
WORKDIR /criu
RUN make clean && make -j $(nproc)