e2e_tests/Dockerfile
Daniel 97ed87c79f [WIP] Add new automated test framework (#1)
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
2023-11-22 21:40:13 +01:00

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