Fixed workflow build
All checks were successful
/ build (push) Successful in 3m23s

This commit is contained in:
lichenblankie 2026-04-11 07:12:26 +00:00
parent 0b9227648b
commit 26b5d899ae

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