소스 검색

revert arch detection

pull/64/head
Luigi Cruz 3 년 전
부모
커밋
5b977b7c8e
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      build-docker.sh

+ 8
- 1
build-docker.sh 파일 보기

@@ -78,7 +78,14 @@ BUILD_OPTS="$(echo "${BUILD_OPTS:-}" | sed -E 's@\-c\s?([^ ]+)@-c /config@')"
# Check the arch of the machine we're running on. If it's 64-bit, use a 32-bit base image instead
case "$(uname -m)" in
x86_64|aarch64)
BASE_IMAGE=arm32v7/debian:bullseye
case "$(uname -m)" in
aarch64)
BASE_IMAGE=arm32v7/debian:bullseye
;;
*)
BASE_IMAGE=i386/debian:bullseye
;;
esac
;;
*)
BASE_IMAGE=debian:bullseye


불러오는 중...
취소
저장