unlighthouse/Dockerfile
Firq 056ffe9b65
Some checks failed
/ release (push) Has been skipped
/ build (push) Failing after 1m11s
Bumped unlighthouse-ci and chromium versions, lighthouse 12 support
2024-06-20 18:38:41 +02:00

14 lines
507 B
Docker

FROM node:20.10.0-bookworm
LABEL authorname="firq"
WORKDIR /unlighthouse
# renovate: datasource=repology depName=debian_12/chromium versioning=loose
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@0.13.1 puppeteer