12 lines
No EOL
222 B
Docker
12 lines
No EOL
222 B
Docker
FROM python:3.12-slim
|
|
|
|
RUN pip install --no-cache-dir pytest-playwright
|
|
|
|
RUN playwright install
|
|
|
|
RUN playwright install-deps
|
|
|
|
COPY ./requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
WORKDIR /code/src |