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 08cd813 commit 19d9378Copy full SHA for 19d9378
Dockerfile
@@ -53,7 +53,8 @@ RUN \
53
pkg-config \
54
ninja-build \
55
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" && \
+ 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" && \
58
tar xzf /tmp/uv.tar.gz -C /tmp/ && \
59
mv /tmp/uv-x86_64-unknown-linux-gnu/uv /usr/bin/uv && \
60
mv /tmp/uv-x86_64-unknown-linux-gnu/uvx /usr/bin/uvx && \
0 commit comments