mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +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>
33 lines
542 B
Docker
33 lines
542 B
Docker
FROM docker.io/library/ibm-semeru-runtimes:open-11-jdk-focal
|
|
ARG CC=gcc
|
|
|
|
COPY scripts/ci/apt-install /bin/apt-install
|
|
|
|
RUN apt-install protobuf-c-compiler \
|
|
libprotobuf-c-dev \
|
|
libaio-dev \
|
|
libprotobuf-dev \
|
|
protobuf-compiler \
|
|
libcap-dev \
|
|
libnl-3-dev \
|
|
gdb \
|
|
bash \
|
|
python3-protobuf \
|
|
python3-yaml \
|
|
libnet-dev \
|
|
libnl-route-3-dev \
|
|
libbsd-dev \
|
|
make \
|
|
git \
|
|
pkg-config \
|
|
iptables \
|
|
gcc \
|
|
maven
|
|
|
|
COPY . /criu
|
|
WORKDIR /criu
|
|
|
|
RUN make mrproper && make -j $(nproc) CC="$CC"
|
|
|
|
ENTRYPOINT mvn -q -f test/javaTests/pom.xml test
|