docker: Enable arm64 docker image building for 'guix pack'.
* guix/docker.scm (build-docker-image): Recognize "aarch64". Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
ec724d1628
commit
9f00e7429d
|
@ -214,10 +214,11 @@ SRFI-19 time-utc object, as the creation time in metadata."
|
||||||
(else
|
(else
|
||||||
(error "unsupported system"
|
(error "unsupported system"
|
||||||
system)))))))
|
system)))))))
|
||||||
(cond* ("x86_64" "amd64")
|
(cond* ("x86_64" "amd64")
|
||||||
("i686" "386")
|
("i686" "386")
|
||||||
("arm" "arm")
|
("arm" "arm")
|
||||||
("mips64" "mips64le")))))
|
("aarch64" "arm64")
|
||||||
|
("mips64" "mips64le")))))
|
||||||
;; Make sure we start with a fresh, empty working directory.
|
;; Make sure we start with a fresh, empty working directory.
|
||||||
(mkdir directory)
|
(mkdir directory)
|
||||||
(with-directory-excursion directory
|
(with-directory-excursion directory
|
||||||
|
|
Reference in New Issue