From cfebf1dc8b43b8c1625454c9c7cf56c7a1853a74 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Wed, 1 Jan 2025 20:30:12 -0800 Subject: [PATCH] alpine: fix pyarrow name again --- .docker/Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/Dockerfile.alpine b/.docker/Dockerfile.alpine index 8fdeed21..9d7c04f8 100644 --- a/.docker/Dockerfile.alpine +++ b/.docker/Dockerfile.alpine @@ -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