We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, im having trouble installing chrome
To isolate the issue I changed the docker file like this:
# Install deps + add Chrome Stable + purge all the things RUN apt-get update && apt-get install -y \ apt-transport-https \ ca-certificates \ curl \ gnupg \ --no-install-recommends \ && curl -sSL https://deb.nodesource.com/setup_12.x | bash - \ && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && echo "deb https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list RUN apt-get update && apt-get install -y google-chrome-stable RUN apt-get update && apt-get install -y \
36 | && echo "deb https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list 37 | 38 | >>> RUN apt-get update && apt-get install -y google-chrome-stable 39 | 40 | RUN apt-get update && apt-get install -y \
Turns out I get a 404 on https://dl.google.com/linux/chrome/deb/
I googled and found issues from years past that suggested it was a country issue - so tried running via VPN from various countries, but still no luck.
Is it just me? Very strange.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, im having trouble installing chrome
To isolate the issue I changed the docker file like this:
Dockerfile:38
36 | && echo "deb https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list
37 |
38 | >>> RUN apt-get update && apt-get install -y google-chrome-stable
39 |
40 | RUN apt-get update && apt-get install -y \
Turns out I get a 404 on https://dl.google.com/linux/chrome/deb/
I googled and found issues from years past that suggested it was a country issue - so tried running via VPN from various countries, but still no luck.
Is it just me? Very strange.
The text was updated successfully, but these errors were encountered: