Skip to content

Commit 6494bd2

Browse files
committed
Fix arm
1 parent 19d9378 commit 6494bd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ RUN \
5656
export ARCH=$(uname -m) && \
5757
curl -o /tmp/uv.tar.gz -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-${ARCH}-unknown-linux-gnu.tar.gz" && \
5858
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 && \
59+
mv /tmp/uv-${ARCH}-unknown-linux-gnu/uv /usr/bin/uv && \
60+
mv /tmp/uv-${ARCH}-unknown-linux-gnu/uvx /usr/bin/uvx && \
6161
uv python install `cat .python-version` && \
6262
uv sync --locked && \
6363
echo "**** install runtime packages ****" && \

0 commit comments

Comments
 (0)