Latest Google Chrome deb package not found during the Cypress set up in Docker #27812
Unanswered
francescoleddafrontiersin
asked this question in
Docker
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
we incurred in the following error just yesterday
We didn't touch our code and after investigation we found only this difference
In our Dockerfile, we download and install the Google Chrome .deb package and discovered that the new version was released just the day before the error.
So using the latest stable version it was broken:
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb RUN dpkg -i google-chrome-stable_current_amd64.deb
We resolved using a fixed previous version:
RUN wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_116.0.5845.187-1_amd64.deb RUN dpkg -i google-chrome-stable_116.0.5845.187-1_amd64.deb
However, we don't want to use a fixed version.
We also have a task to check in future with the latest stable version to not remain behind with the versions
Thanks a lot for any suggestion
Beta Was this translation helpful? Give feedback.
All reactions