FROM node:lts-bullseye-slim@sha256:1b2caf980f422bf707f9dc64879a0a4f9f748d6d3a4e504d8485aa71884c9ec8 LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="lhci" LABEL org.opencontainers.image.url="https://gitea.rknet.org/docker/lhci" LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/lhci" LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/lhci" ARG BUILD_VERSION ARG YQ_VERSION # renovate: datasource=npm depName=@lhci/cli ENV LHCI_VERSION="${BUILD_VERSION:-0.8.1}" # renovate: datasource=github-releases depName=mikefarah/yq ENV YQ_VERSION="${YQ_VERSION:-v4.13.2}" ENV LHCI_BASE_DIR=/drone/src \ FORCE_COLOR=true \ NPM_CONFIG_LOGLEVEL=error \ PATH=/usr/bin:$PATH ADD overlay/ / RUN apt-get update && apt-get install -y git curl wget gnupg jq bash && \ curl -SsL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \ chmod 755 /usr/local/bin/yq && \ wget -qO - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | apt-key add - && \ echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | tee "/etc/apt/sources.list.d/google.list" && \ apt-get update && apt-get install --no-install-recommends -y google-chrome-stable && \ LHCI_VERSION="${LHCI_VERSION##v}" && \ echo "Installing lhci version '$LHCI_VERSION' ..." && \ npm install -g @lhci/cli@"$LHCI_VERSION"; \ npm install -g lighthouse && \ rm -rf /var/lib/apt/lists/* && \ rm -rf /tmp/* && \ rm -rf /root/.cache/ USER root CMD [] WORKDIR /drone/src ENTRYPOINT ["/usr/bin/lhci", "autorun"]