Fix Dockerfile: Add linux-headers and python3-dev to build dependencies

This commit is contained in:
2025-11-11 08:19:51 -06:00
parent 3566c6b2da
commit acbe3597d6

View File

@@ -25,7 +25,11 @@ WORKDIR /app
# Install Python deps
COPY ./requirements.txt .
RUN apk add --no-cache --virtual .build-deps gcc musl-dev && \
RUN apk add --no-cache --virtual .build-deps \
gcc \
musl-dev \
linux-headers \
python3-dev && \
pip install -r requirements.txt && \
apk del .build-deps