前提・実現したいこと
現在docker-compose にて開発環境構築を行っています。
しかしgoogle chromeが依存パッケージエラーにてインストールされずbuildできない状態です。
この依存パッケージエラーを解消し、docker-compose にてbuildを行たいです。
またDockerのバージョンがプレビュー版のため、エラーがmacのCPU(ARM64とAMD64)によるものなのか、単に依存パッケージが悪いのか同様の症状がでてエラーを解消した方がいたらコメントいただきたいです。
google-chromeにはcpuの互換性があるかどうかもご教示願いたいです。
バージョン: 11.1 Big Sur
CPU M1チップ、ARM64
発生している問題・エラーメッセージ
The following packages have unmet dependencies: #12 277.2 google-chrome-stable:amd64 : Depends: libasound2:amd64 (>= 1.0.16) but it is not installable #12 277.2 Depends: libatk-bridge2.0-0:amd64 (>= 2.5.3) but it is not installable #12 277.2 Depends: libatk1.0-0:amd64 (>= 2.2.0) but it is not installable #12 277.2 Depends: libatspi2.0-0:amd64 (>= 2.9.90) but it is not installable #12 277.2 Depends: libc6:amd64 (>= 2.16) but it is not installable #12 277.2 Depends: libcairo2:amd64 (>= 1.6.0) but it is not installable #12 277.2 Depends: libcups2:amd64 (>= 1.4.0) but it is not installable #12 277.2 Depends: libdbus-1-3:amd64 (>= 1.5.12) but it is not installable #12 277.2 Depends: libdrm2:amd64 (>= 2.4.38) but it is not installable #12 277.2 Depends: libexpat1:amd64 (>= 2.0.1) but it is not installable #12 277.2 Depends: libgbm1:amd64 (>= 8.1~0) but it is not installable #12 277.2 Depends: libgcc1:amd64 (>= 1:3.0) but it is not installable #12 277.2 Depends: libgdk-pixbuf2.0-0:amd64 (>= 2.22.0) but it is not installable #12 277.2 Depends: libglib2.0-0:amd64 (>= 2.39.4) but it is not installable #12 277.2 Depends: libgtk-3-0:amd64 (>= 3.9.10) but it is not installable #12 277.2 Depends: libnspr4:amd64 (>= 2:4.9-2~) but it is not installable #12 277.2 Depends: libnss3:amd64 (>= 2:3.22) but it is not installable #12 277.2 Depends: libpango-1.0-0:amd64 (>= 1.14.0) but it is not installable #12 277.2 Depends: libx11-6:amd64 (>= 2:1.4.99.1) but it is not installable #12 277.2 Depends: libxcb1:amd64 (>= 1.9.2) but it is not installable #12 277.2 Depends: libxcomposite1:amd64 (>= 1:0.3-1) but it is not installable #12 277.2 Depends: libxdamage1:amd64 (>= 1:1.1) but it is not installable #12 277.2 Depends: libxext6:amd64 but it is not installable #12 277.2 Depends: libxfixes3:amd64 but it is not installable #12 277.2 Depends: libxkbcommon0:amd64 (>= 0.4.1) but it is not installable #12 277.2 Depends: libxrandr2:amd64 but it is not installable #12 277.2 Depends: libxshmfence1:amd64 but it is not installable #12 277.2 Recommends: libu2f-udev:amd64 #12 277.2 Recommends: libvulkan1:amd64 but it is not installable #12 277.2 E: Unable to correct problems, you have held broken packages.
該当のソースコード
&& wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ && apt-get install -y ./google-chrome-stable_current_amd64.deb \
試したこと
・rosetta2のインストール
・該当ソースコードの下に
&& apt install gdebi -y \ && apt install ./foobar.deb \
を記述
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー