mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-04-25 17:09:10 +00:00
fix pip wheel in dockerfile (#2119)
This commit is contained in:
parent
03d5383a42
commit
e3251edb05
1 changed files with 1 additions and 0 deletions
|
@ -10,6 +10,7 @@ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
|
|||
FROM python:3.11-slim-bookworm
|
||||
WORKDIR /app
|
||||
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
|
||||
RUN pip install --upgrade pip setuptools wheel
|
||||
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
||||
RUN playwright install-deps
|
||||
RUN playwright install
|
||||
|
|
Loading…
Add table
Reference in a new issue