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'])