From 101ebd658a2f59ec7caf00c68b7bb375f743137c Mon Sep 17 00:00:00 2001 From: kingbri Date: Fri, 15 Nov 2024 18:16:48 -0500 Subject: [PATCH] Docker: Add extras to dockerfile Adds support for all features when pulling the image Signed-off-by: kingbri --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f3587cca..96173715 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,8 +19,8 @@ WORKDIR /app # Get requirements COPY pyproject.toml . -# Install packages specified in pyproject.toml cu121 -RUN pip3 install --no-cache-dir .[cu121] +# Install packages specified in pyproject.toml cu121, extras +RUN pip3 install --no-cache-dir .[cu121,extras] RUN rm pyproject.toml