change install order

This commit is contained in:
Daniel 2023-11-21 21:00:14 +01:00
parent 9411fe61ee
commit 8a252df91f

View file

@ -2,9 +2,11 @@ FROM python:3.12-slim
WORKDIR /code WORKDIR /code
COPY ./requirements.txt ./ RUN pip install --no-cache-dir pytest-playwright
RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install RUN playwright install
RUN playwright install-deps RUN playwright install-deps
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt