web-dev-qa-db-fra.com

Le package 'chrome-browser' n'a pas de candidat d'installation

J'essaie d'installer le navigateur chrome dans une image docker avec 

RUN apt-get install chromium-browser

mais j'obtiens l'erreur: 

Package chromium-browser is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'chromium-browser' has no installation candidate

Comment installer correctement chromium dans une image docker?

8
Alex

Je l'ai résolu comme suit: 

# install manually all the missing libraries
RUN apt-get install -y gconf-service libasound2 libatk1.0-0 libcairo2 libcups2 libfontconfig1 libgdk-pixbuf2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libxss1 fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils

# install chrome
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_AMD64.deb
RUN dpkg -i google-chrome-stable_current_AMD64.deb; apt-get -fy install
7
Alex

Utilisez ce qui suit pour installer chrome dans un conteneur de menu fixe: 

RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_AMD64.deb
RUN dpkg -i google-chrome-stable_current_AMD64.deb --fix-missing; apt-get -fy install`
0
Amine Belkhiria