Removes Playwright Dockerfile
Removes the dedicated Playwright Dockerfile. The Playwright setup is now integrated into the primary Dockerfile.
This commit is contained in:
parent
a5cae0fe42
commit
0e8ab72a4e
1 changed files with 0 additions and 21 deletions
|
|
@ -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 . .
|
||||
Loading…
Reference in a new issue