From f5a7203d0696b5d1fa807b335baaf78bfbadf1a1 Mon Sep 17 00:00:00 2001 From: Wei Ouyang Date: Thu, 21 Nov 2024 13:10:06 -0800 Subject: [PATCH] Keep only requirements.txt --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9aceb1b0..bd6580e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,8 +59,7 @@ RUN conda update -n base -c defaults conda -y && \ ADD . . # Install Python dependencies and Playwright -RUN pip install psycopg2-binary==2.9.10 asyncpg==0.30.0 --no-cache-dir && \ - pip install -r requirements.txt --no-cache-dir && \ +RUN pip install -r requirements.txt --no-cache-dir && \ pip install .[server-apps] --no-cache-dir && \ pip install playwright --no-cache-dir && \ playwright install --with-deps