From d13602827cb34d7c9f9ce25967ecf304e208df60 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Thu, 14 Sep 2023 11:30:22 +0800 Subject: [PATCH] fix build --- Dockerfile | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 83eed1f2..8f755b32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,6 +65,7 @@ RUN apt-get update \ && useradd -r moviepilot -g moviepilot -d ${HOME} -s /bin/bash -u 911 \ && apt-get install -y build-essential \ && pip install --upgrade pip \ + && pip install cython \ && pip install -r requirements.txt \ && playwright install-deps chromium \ && python_ver=$(python3 -V | awk '{print $2}') \ diff --git a/requirements.txt b/requirements.txt index 98e0c5bc..cf0b120f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +cython~=3.0.2 pydantic~=1.10.8 SQLAlchemy~=2.0.15 uvicorn~=0.22.0