Docker: Add extras to dockerfile

Adds support for all features when pulling the image

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri
2024-11-15 18:16:48 -05:00
parent 69838e92ca
commit 101ebd658a

View File

@@ -19,8 +19,8 @@ WORKDIR /app
# Get requirements # Get requirements
COPY pyproject.toml . COPY pyproject.toml .
# Install packages specified in pyproject.toml cu121 # Install packages specified in pyproject.toml cu121, extras
RUN pip3 install --no-cache-dir .[cu121] RUN pip3 install --no-cache-dir .[cu121,extras]
RUN rm pyproject.toml RUN rm pyproject.toml