squashed a bunch of workflow build bugs

This commit is contained in:
user 2026-04-11 03:40:09 +00:00
parent d66cfb98c3
commit 0834e179a9
3 changed files with 63 additions and 102 deletions

View file

@ -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