From 9970331856c529ae9cc1605abc277d74aa5f4187 Mon Sep 17 00:00:00 2001 From: David Arranz Date: Fri, 13 Sep 2024 15:55:02 +0200 Subject: [PATCH] . --- Dockerfile.server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.server b/Dockerfile.server index 7e81e55..7c466ff 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -11,7 +11,7 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true # Install Google Chrome Stable and fonts # Note: this installs the necessary libs to make the browser work with Puppeteer. -RUN apt-get update && apt-get install gnupg wget -y && \ +RUN apt-get update && apt-get install libnss3 gnupg wget -y && \ wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \ sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \ apt-get update && \