Created
October 19, 2021 15:49
-
-
Save jonathan-irvin/b0a071b9016fb3e71dd83a761c611c2e to your computer and use it in GitHub Desktop.
Docker Install Chrome steps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
RUN dpkg -i google-chrome.deb | |
RUN sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome | |
RUN rm google-chrome.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment