-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: AudranBert <[email protected]>
- Loading branch information
1 parent
6813545
commit 754974d
Showing
5 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ RUN apt-get update && \ | |
g++ \ | ||
make \ | ||
cmake \ | ||
curl \ | ||
git \ | ||
zlib1g-dev \ | ||
automake \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ghcr.io/opennmt/ctranslate2:latest-ubuntu20.04-cuda12.2 | ||
LABEL maintainer="[email protected], [email protected], [email protected]" | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ffmpeg git | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ffmpeg git curl | ||
|
||
# Install python dependencies | ||
COPY whisper/requirements.ctranslate2.txt ./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.9 | ||
LABEL maintainer="[email protected], [email protected], [email protected]" | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ffmpeg git | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ffmpeg git curl | ||
|
||
# Install python dependencies | ||
COPY whisper/requirements.ctranslate2.txt ./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.9 | ||
LABEL maintainer="[email protected], [email protected], [email protected]" | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg | ||
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg curl | ||
|
||
# Install python dependencies | ||
COPY whisper/requirements.torch.txt ./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.9 | ||
LABEL maintainer="[email protected], [email protected], [email protected]" | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg | ||
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg curl | ||
|
||
# Force CPU versions of torch | ||
RUN pip3 install \ | ||
|