Skip to content
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

Cannot Install google-chrome-stable b/c Ubuntu 16 #255

Open
speedplane opened this issue Jan 18, 2023 · 0 comments
Open

Cannot Install google-chrome-stable b/c Ubuntu 16 #255

speedplane opened this issue Jan 18, 2023 · 0 comments

Comments

@speedplane
Copy link

speedplane commented Jan 18, 2023

My Dockerfile uses this base and installs chrome, I'm seeing an error google-chrome-stable : Depends: libu2f-udev but it is not installable, that I believe is due to this package still using no longer supported Ubuntu 16.

Is Google dropping support for custom Python runtimes?

Dockerfile

FROM gcr.io/google-appengine/python

# Create dependencies for PIL
# Color conversion libs: liblcms liblcms-dev liblcms-utils
# libxmlsec1-dev is a requirement for python-saml python package
# Will load libreoffice, used for converting documents.
RUN apt-get -o Acquire::Check-Valid-Until=false update && \
  apt-get install -y --allow-unauthenticated libxml2-dev  libxmlsec1-dev libxslt1-dev lib32z1-dev \
  gcc python-dev apt-transport-https lsb-release \
  \
  # Web Server
  apache2 apache2-doc apache2-utils libapache2-mod-wsgi

###################################
# Google Chrome
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | \
      apt-key add - && \
    sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' && \
    apt-get -o Acquire::Check-Valid-Until=false update && \
    apt-get -y --force-yes install google-chrome-stable

Truncated Output and Error

Step #1: Fetched 2886 B in 0s (5123 B/s)
Step #1: Reading package lists...
Step #1: Reading package lists...
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #1: Some packages could not be installed. This may mean that you have
Step #1: requested an impossible situation or if you are using the unstable
Step #1: distribution that some required packages have not yet been created
Step #1: or been moved out of Incoming.
Step #1: The following information may help to resolve the situation:
Step #1:
Step #1: The following packages have unmet dependencies:
Step #1:  google-chrome-stable : Depends: libu2f-udev but it is not installable
Step #1: E: Unable to correct problems, you have held broken packages.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant