Skip to content

Commit

Permalink
Fix nvidia deps
Browse files Browse the repository at this point in the history
  • Loading branch information
acmo0 committed May 28, 2024
1 parent 1912061 commit f3c05ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ COPY requirements_ai.txt .

RUN apk update && apk add git wget cargo

RUN pip3 install --upgrade pip
RUN pip3 install nvidia-pyindex
RUN pip3 install --no-cache-dir --no-deps -r requirements_ai.txt
RUN pip3 install --no-cache-dir -r requirements_api.txt
RUN pip install --upgrade pip
RUN pip install nvidia-pyindex
RUN pip install --no-cache-dir --no-deps -r requirements_ai.txt
RUN pip install --no-cache-dir -r requirements_api.txt

COPY . .

Expand Down

0 comments on commit f3c05ae

Please sign in to comment.