From 0e8ab72a4e96139b3c4a1fdc887f6dfbca6e47f3 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Fri, 9 May 2025 15:11:16 -0400 Subject: [PATCH] Removes Playwright Dockerfile Removes the dedicated Playwright Dockerfile. The Playwright setup is now integrated into the primary Dockerfile. --- Dockerfile.Playwright | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Dockerfile.Playwright diff --git a/Dockerfile.Playwright b/Dockerfile.Playwright deleted file mode 100644 index 46a2114a2..000000000 --- a/Dockerfile.Playwright +++ /dev/null @@ -1,21 +0,0 @@ -FROM node:20 - -FROM mcr.microsoft.com/playwright:v1.48.0-noble - -# Set the working directory in the container -WORKDIR /app - -# Copy package.json and package-lock.json -COPY package*.json ./ - -# Install dependencies -RUN npm install - -# Install Playwright browsers -RUN npx playwright install chromium --with-deps - -# Install jq -RUN apt-get install -y jq - -# Copy the rest of the application code -COPY . .