From 790ae24e8bb08df5111cc1cbcce3fb6b1a78250c Mon Sep 17 00:00:00 2001 From: Alexandru Costache Date: Tue, 27 Jan 2026 15:40:07 +0200 Subject: [PATCH] module: Fix x86 build We've recently switched from a Ubuntu base image to an Alpine one. While that fixed the build for RaspberryPi and caused no regression for aarch64, it makes the build fail on x86 with: ./include/uapi/linux/types.h:5:10: fatal error: asm/types.h: No such file or directory We now install the linux-headers package to fix the above build failure. Change-type: patch Signed-off-by: Alexandru Costache --- module/Dockerfile.template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/Dockerfile.template b/module/Dockerfile.template index 2804f20..f3d6ca4 100644 --- a/module/Dockerfile.template +++ b/module/Dockerfile.template @@ -11,7 +11,8 @@ RUN apk add --no-cache \ openssl-dev \ bc \ wget \ - bash + bash \ + linux-headers WORKDIR /usr/src/app