From 6916e666e0c2363e0e0e04dcf65806b7d6a87ef9 Mon Sep 17 00:00:00 2001 From: vilashjagani Date: Mon, 29 Sep 2025 11:55:30 +0530 Subject: [PATCH] Updated Dockerfile to support fs and evs pip package to install --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 92e8937..3f572e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,8 @@ COPY ./src /app/src # Build and install the package RUN uv build && \ pip install . && \ + if [ "$ENABLE_FS_MODULE" = "true" ]; then pip install .[fs];fi && \ + if [ "$ENABLE_EVS_MODULE" = "true" ]; then pip install .[evs];fi && \ apt-get purge -y build-essential gcc && \ rm -rf /var/lib/apt/lists/*