diff --git a/Dockerfile b/Dockerfile index 67103e7..3f2f854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,11 @@ FROM python:3.12-slim WORKDIR /code -COPY ./requirements.txt ./ -RUN pip install --no-cache-dir -r requirements.txt +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