mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
13 lines
333 B
Docker
13 lines
333 B
Docker
#
|
|
# This Dockerfile is used for locally running Playwright in a linux environment.
|
|
# We do this to ensure our reference images for visual regression tests are the
|
|
# same during development and in CI.
|
|
#
|
|
|
|
FROM mcr.microsoft.com/playwright:v1.28.0-focal
|
|
|
|
WORKDIR /work
|
|
|
|
RUN npm install -D @playwright/test
|
|
|
|
COPY playwright.config.ts ./ |