mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
This job is optional and it don't affect the status of a whole job. Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
14 lines
419 B
Text
14 lines
419 B
Text
FROM fedora:rawhide
|
|
|
|
ARG CC=gcc
|
|
|
|
RUN dnf install -y git gcc make
|
|
RUN dnf install -y protobuf-devel protobuf-c-devel libaio-devel libcap-devel libnl3-devel libnet-devel
|
|
RUN dnf install -y python ccache libasan findutils tar python-yaml protobuf-python iptables iproute python-ipaddr procps-ng
|
|
|
|
COPY . /criu
|
|
WORKDIR /criu
|
|
RUN make mrproper && make -j $(nproc)
|
|
|
|
RUN pip install protobuf
|
|
RUN make -C test/zdtm/static env00
|