2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-09-04 00:05:26 +00:00

Dockerfile: add missing test dependencies

This patch adds missing dependencies required to run
the zdtm tests.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov
2021-04-10 08:06:59 +01:00
committed by Andrei Vagin
parent 3074b6d5a2
commit e3c0fa7011
2 changed files with 10 additions and 3 deletions

View File

@@ -2,6 +2,8 @@ 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 \
@@ -20,10 +22,15 @@ RUN apt-install \
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 \
python3-future
COPY . /criu