diff --git a/kaldi/Dockerfile b/kaldi/Dockerfile index d9e020f..dc9e899 100644 --- a/kaldi/Dockerfile +++ b/kaldi/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update && \ g++ \ make \ cmake \ + curl \ git \ zlib1g-dev \ automake \ diff --git a/whisper/Dockerfile.ctranslate2 b/whisper/Dockerfile.ctranslate2 index 9111564..1e49e43 100644 --- a/whisper/Dockerfile.ctranslate2 +++ b/whisper/Dockerfile.ctranslate2 @@ -1,7 +1,7 @@ FROM ghcr.io/opennmt/ctranslate2:latest-ubuntu20.04-cuda12.2 LABEL maintainer="contact@linto.ai, jlouradour@linagora.com, abert@linagora.com" -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 ./ diff --git a/whisper/Dockerfile.ctranslate2.cpu b/whisper/Dockerfile.ctranslate2.cpu index 40d8d00..90b804e 100644 --- a/whisper/Dockerfile.ctranslate2.cpu +++ b/whisper/Dockerfile.ctranslate2.cpu @@ -1,7 +1,7 @@ FROM python:3.9 LABEL maintainer="contact@linto.ai, jlouradour@linagora.com, abert@linagora.com" -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 ./ diff --git a/whisper/Dockerfile.torch b/whisper/Dockerfile.torch index acd0b08..492fcf3 100644 --- a/whisper/Dockerfile.torch +++ b/whisper/Dockerfile.torch @@ -1,7 +1,7 @@ FROM python:3.9 LABEL maintainer="contact@linto.ai, jlouradour@linagora.com, dgaynullin@linagora.com" -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 ./ diff --git a/whisper/Dockerfile.torch.cpu b/whisper/Dockerfile.torch.cpu index 2d45336..e830275 100644 --- a/whisper/Dockerfile.torch.cpu +++ b/whisper/Dockerfile.torch.cpu @@ -1,7 +1,7 @@ FROM python:3.9 LABEL maintainer="contact@linto.ai, jlouradour@linagora.com, dgaynullin@linagora.com" -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 \