21 lines
404 B
Docker
21 lines
404 B
Docker
FROM node:16
|
|
|
|
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 --with-deps
|
|
|
|
# Copy the rest of the application code
|
|
COPY . .
|
|
|
|
# Run Playwright tests
|
|
CMD ["npx", "playwright", "test"]
|