Skip to content

Commit

Permalink
hotfix: build failing on aarch64 machine
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Feb 3, 2024
1 parent bd11c0e commit b4d790d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# syntax=docker/dockerfile-upstream:1-labs
FROM quay.io/pypa/manylinux2014_x86_64
ARG ARCH=x86_64
FROM quay.io/pypa/manylinux2014_${ARCH}

ARG PREFIX=/opt/backend.ai
ARG ARCH=x86_64
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM quay.io/pypa/manylinux2014_x86_64
ARG ARCH=x86_64
FROM quay.io/pypa/manylinux2014_${ARCH}

ENV PATH=$PATH:/opt/python/cp311-cp311/bin

Expand Down

0 comments on commit b4d790d

Please sign in to comment.