Parcourir la source

revert arch detection

pull/64/head
Luigi Cruz il y a 2 ans
Parent
révision
5b977b7c8e
1 fichiers modifiés avec 8 ajouts et 1 suppressions
  1. +8
    -1
      build-docker.sh

+ 8
- 1
build-docker.sh Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer