squashed a bunch of workflow build bugs

This commit is contained in:
lichenblankie 2026-04-11 03:40:09 +00:00
parent 7655748e8e
commit 468a286fee
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