Kar 2025-06-15 22:14:17 +05:30
parent 561333d2cd
commit 301b58b644
1 changed files with 2 additions and 0 deletions

View File

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