From b63ed319bf7ccb34741270ae3d64c6f9d3e8b034 Mon Sep 17 00:00:00 2001
From: Marie Piontek <marie@kaifa.ch>
Date: Wed, 9 Aug 2023 21:15:39 +0000
Subject: [PATCH] fix: building re2 in Dockerfile

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index ec07bb210..6bce93a70 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM alpine:3.18 as build
 WORKDIR /firefish
 
 # Install compilation dependencies
-RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm rust cargo vips
+RUN apk add --no-cache --no-progress git alpine-sdk python3 nodejs-current npm rust cargo vips linux-headers
 
 # Copy only the cargo dependency-related files first, to cache efficiently
 COPY packages/backend/native-utils/Cargo.toml packages/backend/native-utils/Cargo.toml