30 lines
763 B
Docker
30 lines
763 B
Docker
FROM node:20
|
|
|
|
FROM mcr.microsoft.com/playwright:v1.48.0-noble
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Accept GitHub token as a build argument
|
|
ARG GITHUB_TOKEN
|
|
|
|
# Copy package.json and package-lock.json
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
# Copy playwright-tests package files + authenticated .npmrc, then install
|
|
COPY playwright-tests/package*.json ./playwright-tests/
|
|
COPY playwright-tests/.npmrc ./playwright-tests/
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN \
|
|
cd playwright-tests && GITHUB_TOKEN=$(cat /run/secrets/GITHUB_TOKEN) 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 . .
|