From 13d452c7c26ffc6e5ffddf5e07a9ccb32f3e99f6 Mon Sep 17 00:00:00 2001 From: Wei Ouyang Date: Thu, 21 Nov 2024 03:52:37 -0800 Subject: [PATCH] Fix environments in docker --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9c1d5231..9aceb1b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,6 +60,7 @@ 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 && \ pip install .[server-apps] --no-cache-dir && \ pip install playwright --no-cache-dir && \ playwright install --with-deps