-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels