7 lines
194 B
Docker
7 lines
194 B
Docker
FROM mcr.microsoft.com/playwright/python:v1.45.0-jammy
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY tests/e2e/requirements.txt /tmp/e2e-requirements.txt
|
|
RUN pip install --no-cache-dir -r /tmp/e2e-requirements.txt
|