Skip to content

Commit 19d9378

Browse files
committed
Fix arm
1 parent 08cd813 commit 19d9378

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ RUN \
5353
pkg-config \
5454
ninja-build \
5555
clang && \
56-
curl -o /tmp/uv.tar.gz -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-x86_64-unknown-linux-gnu.tar.gz" && \
56+
export ARCH=$(uname -m) && \
57+
curl -o /tmp/uv.tar.gz -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-${ARCH}-unknown-linux-gnu.tar.gz" && \
5758
tar xzf /tmp/uv.tar.gz -C /tmp/ && \
5859
mv /tmp/uv-x86_64-unknown-linux-gnu/uv /usr/bin/uv && \
5960
mv /tmp/uv-x86_64-unknown-linux-gnu/uvx /usr/bin/uvx && \

0 commit comments

Comments
 (0)