Skip to content

Commit 8175ada

Browse files
authored
fix aarch64 python builds (#9)
1 parent 305a344 commit 8175ada

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN <<EOT
4646
apt-get update -y
4747
apt-get install -y --no-install-recommends zstd binutils
4848
[ "${TARGETARCH}" = "amd64" ] && export OPTIONS="x86_64-unknown-linux-gnu-pgo+lto-full"
49-
[ "${TARGETARCH}" = "arm64" ] && export OPTIONS="aarch64-unknown-linux-gnu-lto-full"
49+
[ "${TARGETARCH}" = "arm64" ] && export OPTIONS="aarch64-unknown-linux-gnu-pgo+lto-full"
5050
curl -L -o python.tar.zst "https://github.com/astral-sh/python-build-standalone/releases/download/${RELEASE}/cpython-${VERSION}+${RELEASE}-${OPTIONS}.tar.zst"
5151
tar --zstd -xf python.tar.zst
5252
cp -rp python/install/* /usr

0 commit comments

Comments
 (0)