alpine: fix pyarrow name again

This commit is contained in:
James R. Barlow
2025-01-01 20:30:12 -08:00
parent 1aaff4af6f
commit cfebf1dc8b
+2 -2
View File
@@ -19,11 +19,12 @@ RUN apk add --no-cache \
FROM base AS builder
# Yes it really is python3-dev, and py3-package
RUN apk add --no-cache \
ca-certificates \
git \
python3-dev \
python3-pyarrow \
py3-pyarrow \
curl
COPY . /app
@@ -34,7 +35,6 @@ COPY --from=ghcr.io/astral-sh/uv:0.5.5 /uv /uvx /bin/
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
# Instead of restarting the shell, use uv directly from its installed location.
RUN uv sync --extra test --extra webservice --extra watcher --no-dev
FROM base