Skip to content

Instantly share code, notes, and snippets.

@jonathan-irvin
Created October 19, 2021 15:49
Show Gist options
  • Save jonathan-irvin/b0a071b9016fb3e71dd83a761c611c2e to your computer and use it in GitHub Desktop.
Save jonathan-irvin/b0a071b9016fb3e71dd83a761c611c2e to your computer and use it in GitHub Desktop.
Docker Install Chrome steps
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