From a4e306b45ae1a0215384531d05d3d5fee9eb153c Mon Sep 17 00:00:00 2001 From: Firq <me@firq.dev> Date: Mon, 14 Apr 2025 23:05:16 +0200 Subject: [PATCH] Testing astro-critical-css with bookworm 2 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4343cf..8849657 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM node:22-bookworm AS build WORKDIR /app COPY . . +ENV CI=true ENV CHROMIUM_VERSION="135.0.7049.84-1~deb12u1" -RUN apt-get update && apt-get -y install --no-install-recommends chromium=${CHROMIUM_VERSION} procps && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get -y install --no-install-recommends chromium=${CHROMIUM_VERSION} procps libxss1 && rm -rf /var/lib/apt/lists/* RUN npm i RUN npm run astro telemetry disable