Skip to content

Commit

Permalink
Fix cpu dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyralei committed Sep 19, 2024
1 parent 9585a50 commit 6146651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ RUN python3 -m venv venv

ENV PATH="/workspace/venv/bin:$PATH"

COPY requirements-cuda.txt .
COPY requirements-cpu.txt .
COPY requirements.txt .

RUN pip install --upgrade pip && \
pip install -r requirements-cuda.txt \
pip install -r requirements-cpu.txt \
&& pip install -r requirements.txt

COPY src/whisperx_api_server ./whisperx_api_server
Expand Down

0 comments on commit 6146651

Please sign in to comment.