-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building the Docker image fails for M1 Mac users #258
Comments
@shunichironomura 原因がわかっているわけではないですが、M1 Macというのが若干引っかかっています。 |
@200km ありがとうございます。はい、M1 Macなのが原因のようです。Dockerfileの1行目を以下のように変更したらビルドできました。(そういえば他のプロジェクトでも同様の問題があったのを思い出しました・・) FROM --platform=linux/x86_64 ubuntu:latest |
解決したようで良かったですが、この修正を反映すべきか考えたいのでreopenします。 |
あー,これは正確には Docker image の aarch64 サポート事案っぽいですね.どうしたもんかな. |
まあ,そもそも |
同様の環境で似たような箇所で詰まっています。#258 (comment) に従い変更してみましたが通りませんでした。
|
@ItsukiKawamoto コメントありがとうございます!M1 Macユーザーの方に確認をお願いしていますので、少々お待ち下さい。 |
@ItsukiKawamoto もしかするとこちらにあるような、MacにおけるDockerの問題が原因かもしれません。 以下は成功しますでしょうか?
|
@shunichironomura |
@ItsukiKawamoto 解決したようで良かったです! @shunichironomura コメントありがとうございます!! |
Overview
When building the Docker image per this section of the documentation,
./setup_docker.sh build
fails while trying to installgcc-multilib
. Is this a bug or am I missing something?Details
Description
When running
./setup_docker.sh build
, it fails with the following output:Changing the base image from
ubuntu:latest
(ubuntu:jammy
) toubuntu:focal
did not resolve this issue.Conditions of occurrence
The text was updated successfully, but these errors were encountered: