mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
This commit removes the dependency on the __future__ module, which was used to enable Python 3 features in Python 2 code. With support for Python 2 being dropped, it is no longer necessary to maintain backward compatibility. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
52 lines
1.2 KiB
Cheetah
52 lines
1.2 KiB
Cheetah
ARG CC=gcc
|
|
|
|
COPY scripts/ci/apt-install /bin/apt-install
|
|
|
|
# On Ubuntu, kernel modules such as ip_tables and xt_mark may not be loaded by default
|
|
# We need to install kmod to enable iptables to load these modules for us.
|
|
RUN apt-install \
|
|
libnet-dev \
|
|
libnl-route-3-dev \
|
|
$CC \
|
|
bsdmainutils \
|
|
build-essential \
|
|
git-core \
|
|
iptables \
|
|
libaio-dev \
|
|
libbsd-dev \
|
|
libcap-dev \
|
|
libgnutls28-dev \
|
|
libgnutls30 \
|
|
libnftables-dev \
|
|
libnl-3-dev \
|
|
libprotobuf-c-dev \
|
|
libprotobuf-dev \
|
|
libselinux-dev \
|
|
iproute2 \
|
|
kmod \
|
|
pkg-config \
|
|
protobuf-c-compiler \
|
|
protobuf-compiler \
|
|
python-is-python3 \
|
|
python3-minimal \
|
|
python3-protobuf \
|
|
python3-yaml
|
|
|
|
COPY . /criu
|
|
WORKDIR /criu
|
|
|
|
RUN git clean -dfx && date && \
|
|
# Check single object build
|
|
make -j $(nproc) CC="$CC" criu/parasite-syscall.o && \
|
|
# Compile criu
|
|
make -j $(nproc) CC="$CC" && \
|
|
date && \
|
|
# Check that "make mrproper" works
|
|
make mrproper && ! git clean -ndx --exclude=scripts/build \
|
|
--exclude=.config --exclude=test | grep .
|
|
|
|
# Re-compile criu and compile tests for 'make docker-test'
|
|
RUN make -j $(nproc) CC="$CC" && \
|
|
date && make -j $(nproc) CC="$CC" -C test/zdtm && date
|
|
|
|
#RUN make test/compel/handle_binary && ./test/compel/handle_binary
|