Compare commits
No commits in common. "main" and "actions-update" have entirely different histories.
main
...
actions-up
1 changed files with 4 additions and 9 deletions
13
Dockerfile
13
Dockerfile
|
@ -1,20 +1,15 @@
|
|||
FROM node:22.14-bookworm
|
||||
FROM node:20.14.0-bookworm
|
||||
|
||||
LABEL authorname="firq"
|
||||
LABEL description="unlighthouse container for ci-based lighthouse testing"
|
||||
WORKDIR /unlighthouse
|
||||
|
||||
ENV CHROMIUM_VERSION="135.0.7049.84-1~deb12u1"
|
||||
ENV UNLIGHTHOUSE_VERSION="0.16.3"
|
||||
|
||||
# Skip puppeteer executable download
|
||||
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
||||
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
|
||||
|
||||
# renovate: datasource=repology depName=debian_12/chromium versioning=loose
|
||||
ENV CHROMIUM_VERSION="126.0.6478.114-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@${UNLIGHTHOUSE_VERSION} puppeteer
|
||||
RUN npm install @unlighthouse/cli@0.13.1 puppeteer
|
||||
|
|
Loading…
Add table
Reference in a new issue