From f880d2c9884d8cef5f447d025f7f9a5733dbb5c3 Mon Sep 17 00:00:00 2001 From: Carbrex <95964955+Carbrex@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:48:02 +0530 Subject: [PATCH] Install python3-venv in ci dockerfile --- docker/ci.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/ci.Dockerfile b/docker/ci.Dockerfile index fbae5b54..89ce8bf8 100644 --- a/docker/ci.Dockerfile +++ b/docker/ci.Dockerfile @@ -10,7 +10,7 @@ RUN /lila/ui/build --clean-build --debug ################################################################################## FROM mongo:7-jammy AS dbbuilder -RUN apt update && apt install -y python3-pip curl && apt clean +RUN apt update && apt install -y python3-pip python3-venv curl && apt clean RUN pip3 install pymongo requests ENV JAVA_HOME=/opt/java/openjdk