Skip to content

Commit

Permalink
Docker: Add extras to dockerfile
Browse files Browse the repository at this point in the history
Adds support for all features when pulling the image

Signed-off-by: kingbri <[email protected]>
  • Loading branch information
bdashore3 committed Nov 15, 2024
1 parent 69838e9 commit 101ebd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 101ebd6

Please sign in to comment.