You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
381 B
13 lines
381 B
FROM ubuntu
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install cmake g++ make git wget libopenblas-base libopenblas-dev -y && \
|
|
mkdir -p /app/whisper
|
|
WORKDIR /app/whisper
|
|
COPY . .
|
|
|
|
RUN cmake . -DWHISPER_SUPPORT_OPENBLAS=ON && make
|
|
RUN cd /app/whisper/models && \
|
|
./download-ggml-model.sh large && \
|
|
mv /app/whisper/models/ggml-large.bin /app/whisper/models/ggml-main.bin
|