I am working on Debian but am using a Docker image using yum
(hence why I think Centos), specifically FROM amazoncorretto:17.0.11-al2
). I need to get the dependencies of google-chrome-stable and I can ssh into the Docker without issue. Does anyone know how I can do so?
2
Answers
I was able to get it working with the following. There were two main issues:
Dockerfile
Docker build
Docker run
in container , run command
get result:
To connect to Docker Container, do not use SSH.
Open Another terminal:
find your my-amazoncorretto-chrome container id :
5afb249fddf1
run command
Note
Do not download the latest version of Google Chrome (https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm)
Otherwise, you will encounter this error when executing Chrome:
/usr/bin/google-chrome-stable: undefined symbol: ippValidateAttributes
Discussion about this error is at https://www.reddit.com/r/aws/comments/1evx90i/googlechrome_does_not_launch_anymore_on_workspace/?rdt=55314
So I switched to version 126 when installing Google Chrome:
126.0.6478.114
To create and test your own installation start with this command: