From 67d03a9b9df4315079a0b82d09cbbcc76d4bd396 Mon Sep 17 00:00:00 2001 From: Kar l5 Date: Sun, 15 Jun 2025 23:16:15 +0530 Subject: [PATCH] v3 --- Dockerfile | 2 +- app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index afa4e8a..8c37ce6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /whisper.cpp RUN make # Verify main executable was built -RUN ls -lh main && file main +# RUN ls -lh main && file main FROM ubuntu:22.04 AS runtime diff --git a/app.py b/app.py index 6c030f6..f4f44f8 100644 --- a/app.py +++ b/app.py @@ -7,7 +7,7 @@ import subprocess app = Flask(__name__) CORS(app) -WHISPER_CPP_PATH = "/whisper.cpp/main" +WHISPER_CPP_PATH = "/whisper.cpp" MODEL_PATH = "/whisper.cpp/models/ggml-base.en.bin" @app.route('/transcribe', methods=['POST'])