From c26084b19a60c9ae7f5b6910f4f513058f7b3397 Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Sun, 30 Aug 2020 10:29:32 -0400 Subject: [PATCH] Install libxss1 for the test image, looks like it is needed by Chrome See also https://github.com/puppeteer/puppeteer/issues/6192 --- image/discourse_test/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/discourse_test/Dockerfile b/image/discourse_test/Dockerfile index a3fe073..48f6ac8 100644 --- a/image/discourse_test/Dockerfile +++ b/image/discourse_test/Dockerfile @@ -22,7 +22,7 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo ap curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - &&\ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list &&\ apt update &&\ - apt install -y libgconf-2-4 google-chrome-stable yarn nodejs &&\ + apt install -y libgconf-2-4 libxss1 google-chrome-stable yarn nodejs &&\ npm install -g eslint babel-eslint &&\ cd /var/www/discourse && sudo -E -u discourse -H yarn install -- 2.25.1