From 9661b6b86de93c9d9d2e11c49f835f3129230797 Mon Sep 17 00:00:00 2001 From: naskya <m@naskya.net> Date: Thu, 7 Mar 2024 21:11:52 +0900 Subject: [PATCH] fix (container): add linux-headers to build dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df54502a9d..9117d71900 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM docker.io/node:20-alpine as build WORKDIR /firefish # Install compilation dependencies -RUN apk update && apk add --no-cache build-base curl ca-certificates python3 +RUN apk update && apk add --no-cache build-base linux-headers curl ca-certificates python3 RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}"