From 8ead06e3a463c287fea857015fe86c0d7b6416ec Mon Sep 17 00:00:00 2001 From: Chase King Date: Mon, 24 Feb 2025 09:44:51 -0500 Subject: [PATCH] Specified to only install chromium for playwright --- Dockerfile.playwright | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.playwright b/Dockerfile.playwright index 939f3dac..a064c31e 100644 --- a/Dockerfile.playwright +++ b/Dockerfile.playwright @@ -12,7 +12,7 @@ COPY package*.json ./ RUN npm install # Install Playwright browsers -RUN npx playwright install --with-deps +RUN npx playwright install chromium --with-deps # Install jq RUN apt-get install -y jq