From b7f1f15034dc84cc4437c153bbcef72f252996e8 Mon Sep 17 00:00:00 2001 From: Egor Kotov Date: Sat, 11 Jan 2025 10:42:15 +0100 Subject: [PATCH 1/2] try to fix workflow failing --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3ff5209a48a..9ff17485db6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN chmod +x /metrics/source/app/action/index.mjs \ # Install latest chrome dev package, fonts to support major charsets and skip chromium download on puppeteer install # Based on https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker && apt-get update \ - && apt-get install -y wget gnupg ca-certificates libgconf-2-4 \ + && apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev wget gnupg ca-certificates libgconf-2-4 \ && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ && 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 \ From 0e7980e764ea957e53f24cf8247a9f04a3cd0905 Mon Sep 17 00:00:00 2001 From: Egor Kotov Date: Sat, 11 Jan 2025 10:45:20 +0100 Subject: [PATCH 2/2] add xz-utils --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ff17485db6..f0c299b8c76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN chmod +x /metrics/source/app/action/index.mjs \ # Install latest chrome dev package, fonts to support major charsets and skip chromium download on puppeteer install # Based on https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker && apt-get update \ - && apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev wget gnupg ca-certificates libgconf-2-4 \ + && apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev wget gnupg ca-certificates xz-utils libgconf-2-4 \ && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ && 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 \