From de362e25cb5391efb42323af911eb2e8adeb4a0a Mon Sep 17 00:00:00 2001 From: Tomas Pazderka Date: Thu, 1 Oct 2020 14:38:01 +0200 Subject: [PATCH] Add missing libs for integration tests --- docker/integration_tests/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/integration_tests/Dockerfile b/docker/integration_tests/Dockerfile index 3ee4a3ea3..9004db1d9 100644 --- a/docker/integration_tests/Dockerfile +++ b/docker/integration_tests/Dockerfile @@ -9,12 +9,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends\ libgconf-2-4 \ libnss3-tools \ ntp \ - wget + wget \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* RUN wget -q https://deb.nodesource.com/setup_12.x -O - | bash - RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - RUN echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list RUN apt-get update && apt-get install -y --no-install-recommends \ google-chrome-stable \ + libxss1 \ nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*