From 056ffe9b65fc4fbdd0031f509dc645db6e95c62c Mon Sep 17 00:00:00 2001 From: Firq Date: Thu, 20 Jun 2024 18:38:41 +0200 Subject: [PATCH] Bumped unlighthouse-ci and chromium versions, lighthouse 12 support --- .gitignore | 1 + Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a3062be --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/* diff --git a/Dockerfile b/Dockerfile index f36341f..270dcb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,11 +3,11 @@ LABEL authorname="firq" WORKDIR /unlighthouse # renovate: datasource=repology depName=debian_12/chromium versioning=loose -ENV CHROMIUM_VERSION="120.0.6099.129-1~deb12u1" +ENV CHROMIUM_VERSION="126.0.6478.56-1~deb12u1" ENV NODE_ENV='production' # Update path so executable can be run globally ENV PATH="/unlighthouse/node_modules/.bin:${PATH}" RUN apt-get update && apt-get -y install --no-install-recommends chromium=${CHROMIUM_VERSION} procps && rm -rf /var/lib/apt/lists/* -RUN npm install @unlighthouse/cli puppeteer +RUN npm install @unlighthouse/cli@0.13.1 puppeteer