mirror of
https://github.com/checkpoint-restore/criu
synced 2025-09-05 08:45:49 +00:00
Right now, this test fails with this error: Error (criu/files-reg.c:1031): Can't dump ghost file /criu/test/javaTests/omrvmem_000000626_Mlm48x of 2097152 size, increase limit Signed-off-by: Andrei Vagin <avagin@google.com>
34 lines
618 B
Docker
34 lines
618 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
|
|
|
|
RUN mkdir -p /etc/criu && echo 'ghost-limit 16777216' > /etc/criu/default.conf
|
|
COPY . /criu
|
|
WORKDIR /criu
|
|
|
|
RUN make mrproper && make -j $(nproc) CC="$CC"
|
|
|
|
ENTRYPOINT mvn -f test/javaTests/pom.xml test
|