From b1cdcc8784aa06fe22eff9aeb215244b8c429563 Mon Sep 17 00:00:00 2001 From: David Bauer <mail@david-bauer.net> Date: Thu, 7 Dec 2023 04:08:19 +0100 Subject: [PATCH] docker: add missing dependencies Add the necessary dependencies to compile OpenWrt 24.10. Signed-off-by: David Bauer <mail@david-bauer.net> --- contrib/docker/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile index e303e5e57..62fc2cd59 100644 --- a/contrib/docker/Dockerfile +++ b/contrib/docker/Dockerfile @@ -9,7 +9,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ file \ git \ python3 \ + python3-dev \ python3-distutils \ + python3-pyelftools \ + python3-setuptools \ build-essential \ gawk \ unzip \ @@ -26,6 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ shellcheck \ libnss-unknown \ openssh-client \ + swig \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -- GitLab