From 8bf57842028d9a0604ed64967dd4fa3fc49476f0 Mon Sep 17 00:00:00 2001 From: Daniel Salzman Date: Tue, 29 Jul 2025 18:30:55 +0200 Subject: [PATCH] docker --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cdf865d937..d688fbe31b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,9 @@ ENV BUILD_PKGS=" \ libxdp-dev \ make \ pkg-config \ - protobuf-c-compiler" + protobuf-c-compiler \ + python3 \ + python3-setuptools" # Install dependencies RUN apt-get update && \ @@ -46,7 +48,8 @@ RUN autoreconf -if && \ --enable-dnstap \ --disable-static \ --disable-documentation && \ - make -j$(grep -c ^processor /proc/cpuinfo) + make -j$(grep -c ^processor /proc/cpuinfo) && \ + make -C python dist # Run unittests if requested and install the project ARG CHECK=disable @@ -73,7 +76,8 @@ ENV RUNTIME_PKGS=" \ libngtcp2-16 \ libprotobuf-c1 \ liburcu8t64 \ - libxdp1" + libxdp1 \ + python3" # Install dependencies and create knot user and group ARG UID=53 -- 2.47.3