12 lines
505 B
Docker
12 lines
505 B
Docker
# Dev container: same image as CI e2e (Playwright Noble) so visual snapshots match.
|
|
# Snapshots generated in the devcontainer will match CI; no need to run update-snapshots in CI.
|
|
FROM mcr.microsoft.com/playwright:v1.58.0-noble
|
|
|
|
# pnpm for this project (CI uses the same)
|
|
RUN corepack enable && corepack prepare pnpm@10.28.2 --activate
|
|
|
|
RUN mkdir -p /workspaces/mifi-ventures-landing
|
|
WORKDIR /workspaces/mifi-ventures-landing
|
|
|
|
# Default user is root (Playwright image); devcontainer runs as root for e2e.
|