Skip to content

Commit

Permalink
Merge pull request #72 from djmaze/patch-1
Browse files Browse the repository at this point in the history
Remove explicit install of pytorch & exllamav2 in Dockerfile
  • Loading branch information
bdashore3 authored Mar 6, 2024
2 parents 9a007c4 + 4afb413 commit 47c42a2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ WORKDIR /usr/src/app
# Get requirements
COPY requirements.txt requirements.txt

# Install torch with CUDA support and exllamav2
RUN pip install torch --extra-index-url https://download.pytorch.org/whl/cu121
RUN pip install exllamav2

# Install any other needed packages specified in requirements.txt
# Install packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy the current directory contents into the container at /usr/src/app
Expand Down

0 comments on commit 47c42a2

Please sign in to comment.