diff --git a/Dockerfile b/Dockerfile index 305961f..471fd09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,10 +13,12 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Set working directory +RUN mkdir -p /app && chmod 777 /app WORKDIR /app # Clone whisper.cpp (shallow clone) RUN git clone --depth 1 https://github.com/ggerganov/whisper.cpp.git +RUN chmod -R 777 whisper.cpp # Build whisper.cpp properly RUN cd whisper.cpp && \