Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Jan 5, 2025
1 parent 21c2bf2 commit 0b029f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ WORKDIR /app
COPY . /app

RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip install -U .
RUN pip3 install -U .
RUN python3 -c 'from faster_whisper import WhisperModel; WhisperModel("medium"); WhisperModel("large-v2")'

ENTRYPOINT ["whisper-ctranslate2"]
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

docker-build:
docker build -t whisper-ctranslate2 . -f Dockerfile;
docker image ls | grep whisper-ctranslate2

docker-run:
docker volume create traductor-files;
Expand Down

0 comments on commit 0b029f8

Please sign in to comment.