From 26b5d899aeb301406383d766bc1939a7df8d95b3 Mon Sep 17 00:00:00 2001 From: lichenblankie Date: Sat, 11 Apr 2026 07:12:26 +0000 Subject: [PATCH] Fixed workflow build --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9895f65..713df67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,12 @@ FROM python:3.12-slim WORKDIR /app +# Install build tools for packages like hnswlib +RUN apt-get update && apt-get install -y --no-install-recommends \ + g++ \ + gcc \ + && rm -rf /var/lib/apt/lists/* + COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt