unlighthouse/Dockerfile
Firq 41b6f5b7bc
Some checks failed
/ build (push) Failing after 13s
/ release (push) Has been skipped
added maintainer label
2023-12-21 15:36:49 +01:00

15 lines
524 B
Docker

LABEL org.opencontainers.image.authors="firq"
FROM node:20.10.0-bookworm
WORKDIR /unlighthouse
# renovate: datasource=repology depName=debian_12/chromium versioning=loose
ENV CHROMIUM_VERSION="120.0.6099.109-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