change install order
This commit is contained in:
parent
9411fe61ee
commit
8a252df91f
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue