Created
May 29, 2023 14:01
-
-
Save sarkrui/834265e29de742105205a1f7539dc77d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
DEBIAN_FRONTEND=noninteractive && \ | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub > /usr/share/keyrings/chrome.pub && \ | |
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/chrome.pub] http://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/google-chrome.list && \ | |
apt update -y && \ | |
apt install -y google-chrome-stable | |
apt install xvfb -y | |
export DISPLAY=:1 | |
Xvfb $DISPLAY -screen $DISPLAY 1920x1080x8 & | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment