mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 16:51:37 +00:00
22 lines
572 B
Cheetah
22 lines
572 B
Cheetah
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 \
|
|
libcap-dev \
|
|
iptables \
|
|
libnl-3-dev \
|
|
libselinux-dev \
|
|
pkg-config \
|
|
git-core
|
|
|
|
COPY . /criu
|
|
WORKDIR /criu
|
|
|
|
RUN make clean && make -j $(nproc)
|