We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca382e commit 65f775aCopy full SHA for 65f775a
flavors/ci_light/Dockerfile
@@ -28,6 +28,10 @@ FROM ghcr.io/astral-sh/uv:0.8.0 AS uv
28
FROM python:3.13-alpine3.21 AS build-ml-core
29
WORKDIR /
30
COPY --from=uv /uv /uvx /bin/
31
+ARG TARGETPLATFORM
32
+RUN [ "$TARGETPLATFORM" = "linux/arm64" ] && apk -U --no-cache upgrade && apk add --no-cache curl libgcc build-base musl-dev \
33
+ && curl https://sh.rustup.rs -sSf | sh -s -- -y || true
34
+ENV PATH="/root/.cargo/bin:${PATH}"
35
# Install dependencies
36
RUN --mount=type=cache,target=/root/.cache/uv \
37
--mount=type=bind,source=uv.lock,target=uv.lock \
0 commit comments