Merge pull request #4788 from jxxghp/cursor/install-playwright-dependencies-in-dockerfile-b7d6

Install playwright dependencies in dockerfile
This commit is contained in:
jxxghp
2025-08-21 00:16:48 +08:00
committed by GitHub

View File

@@ -57,7 +57,7 @@ RUN python3 -m venv ${VENV_PATH} \
COPY ../requirements.in requirements.in
RUN ${VENV_PATH}/bin/pip-compile requirements.in \
&& ${VENV_PATH}/bin/pip install -r requirements.txt \
&& playwright install-deps chromium \
&& ${VENV_PATH}/bin/playwright install-deps chromium \
&& apt-get remove -y build-essential \
&& apt-get autoremove -y \
&& apt-get clean -y \