From da8025c10ff58380dc27fb468d0b0d955081cc02 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sun, 25 Jan 2026 00:50:02 +0000 Subject: [PATCH] fix dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81e947c..bd9a3f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,11 +22,11 @@ FROM base as build # Install packages needed to build node modules RUN apt-get update -qq && \ - apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3 + apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3 # Install node modules COPY --link package.json pnpm-lock.yaml ./ -RUN pnpm install --frozen-lockfile --prod=false +RUN pnpm install --frozen-lockfile --prod=false && pnpx playwright install --with-deps chromium # Copy application code COPY --link . .