Spaces:
Running
Running
File size: 361 Bytes
b5af145 125b07b b5af145 125b07b b5af145 5807e15 b5af145 125b07b b5af145 125b07b 2d07114 125b07b b5af145 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM ollama/ollama:latest
RUN apt-get update && apt-get install -y python3 python3-pip ffmpeg curl && rm -rf /var/lib/apt/lists/*
RUN pip3 install --no-cache-dir gradio requests faster-whisper --break-system-packages
COPY app.py /app.py
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 7860
ENTRYPOINT []
CMD ["bash", "/entrypoint.sh"] |