- Added support for Faster Whisper transcription via Jigasi and Skynet. - Updated .env.example to include new environment variables for transcription settings. - Enhanced Jitsi Docker Compose configuration to include Skynet and Jigasi services. - Introduced new API endpoints for managing organizational folders in the drive service. - Updated Nextcloud initialization script to enable external file mounting. - Improved error handling and response structures in the drive API. - Added new properties for organization settings related to transcription and agenda management.
24 lines
589 B
Docker
24 lines
589 B
Docker
FROM python:3.12-bookworm
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends git ffmpeg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /skynet
|
|
RUN git clone --depth 1 https://github.com/jitsi/skynet.git .
|
|
|
|
RUN pip install --no-cache-dir poetry \
|
|
&& poetry config virtualenvs.create false \
|
|
&& poetry install --no-interaction --no-ansi
|
|
|
|
ENV ENABLED_MODULES=streaming_whisper
|
|
ENV BYPASS_AUTHORIZATION=1
|
|
ENV WHISPER_MODEL_NAME=tiny
|
|
ENV WHISPER_MODEL_PATH=/models/streaming-whisper
|
|
ENV BEAM_SIZE=1
|
|
|
|
EXPOSE 8000
|
|
VOLUME ["/models"]
|
|
|
|
CMD ["poetry", "run", "./run.sh"]
|