2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 01:51:51 +00:00
criu/scripts/build/Dockerfile.openj9-ubuntu
Andrei Vagin 9686693aa6 test/javaTests: update org.testng:testng (Maven)
TestNG is vulnerable to Path Traversal

Fixes https://github.com/checkpoint-restore/criu/security/dependabot/1.

Signed-off-by: Andrei Vagin <avagin@gmail.com>
Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
2023-04-15 21:17:21 -07:00

34 lines
560 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 \
python3-future \
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