Spaces:
Runtime error
Runtime error
File size: 5,991 Bytes
4b12e15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# Base image
FROM python:3.9-slim
# Install system dependencies, build tools, and libraries
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
wget \
tar \
xz-utils \
fonts-liberation \
fontconfig \
build-essential \
yasm \
cmake \
meson \
ninja-build \
nasm \
libssl-dev \
libvpx-dev \
libx264-dev \
libx265-dev \
libnuma-dev \
libmp3lame-dev \
libopus-dev \
libvorbis-dev \
libtheora-dev \
libspeex-dev \
libfreetype6-dev \
libfontconfig1-dev \
libgnutls28-dev \
libaom-dev \
libdav1d-dev \
librav1e-dev \
libsvtav1enc-dev \
libzimg-dev \
libwebp-dev \
git \
pkg-config \
autoconf \
automake \
libtool \
libfribidi-dev \
libharfbuzz-dev \
libnss3 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libcups2 \
libxcomposite1 \
libxrandr2 \
libxdamage1 \
libgbm1 \
libasound2 \
libpangocairo-1.0-0 \
libpangoft2-1.0-0 \
libgtk-3-0 \
&& rm -rf /var/lib/apt/lists/*
# Install SRT from source (latest version using cmake)
RUN git clone https://github.com/Haivision/srt.git && \
cd srt && \
mkdir build && cd build && \
cmake .. && \
make -j$(nproc) && \
make install && \
cd ../.. && rm -rf srt
# Install SVT-AV1 from source
RUN git clone https://gitlab.com/AOMediaCodec/SVT-AV1.git && \
cd SVT-AV1 && \
git checkout v0.9.0 && \
cd Build && \
cmake .. && \
make -j$(nproc) && \
make install && \
cd ../.. && rm -rf SVT-AV1
# Install libvmaf from source
RUN git clone https://github.com/Netflix/vmaf.git && \
cd vmaf/libvmaf && \
meson build --buildtype release && \
ninja -C build && \
ninja -C build install && \
cd ../.. && rm -rf vmaf && \
ldconfig # Update the dynamic linker cache
# Manually build and install fdk-aac (since it is not available via apt-get)
RUN git clone https://github.com/mstorsjo/fdk-aac && \
cd fdk-aac && \
autoreconf -fiv && \
./configure && \
make -j$(nproc) && \
make install && \
cd .. && rm -rf fdk-aac
# Install libunibreak (required for ASS_FEATURE_WRAP_UNICODE)
RUN git clone https://github.com/adah1972/libunibreak.git && \
cd libunibreak && \
./autogen.sh && \
./configure && \
make -j$(nproc) && \
make install && \
ldconfig && \
cd .. && rm -rf libunibreak
# Build and install libass with libunibreak support and ASS_FEATURE_WRAP_UNICODE enabled
RUN git clone https://github.com/libass/libass.git && \
cd libass && \
autoreconf -i && \
./configure --enable-libunibreak || { cat config.log; exit 1; } && \
mkdir -p /app && echo "Config log located at: /app/config.log" && cp config.log /app/config.log && \
make -j$(nproc) || { echo "Libass build failed"; exit 1; } && \
make install && \
ldconfig && \
cd .. && rm -rf libass
# Build and install FFmpeg with all required features
RUN git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg && \
cd ffmpeg && \
git checkout n7.0.2 && \
PKG_CONFIG_PATH="/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig" \
CFLAGS="-I/usr/include/freetype2" \
LDFLAGS="-L/usr/lib/x86_64-linux-gnu" \
./configure --prefix=/usr/local \
--enable-gpl \
--enable-pthreads \
--enable-neon \
--enable-libaom \
--enable-libdav1d \
--enable-librav1e \
--enable-libsvtav1 \
--enable-libvmaf \
--enable-libzimg \
--enable-libx264 \
--enable-libx265 \
--enable-libvpx \
--enable-libwebp \
--enable-libmp3lame \
--enable-libopus \
--enable-libvorbis \
--enable-libtheora \
--enable-libspeex \
--enable-libass \
--enable-libfreetype \
--enable-libharfbuzz \
--enable-fontconfig \
--enable-libsrt \
--enable-filter=drawtext \
--extra-cflags="-I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include" \
--extra-ldflags="-L/usr/lib/x86_64-linux-gnu -lfreetype -lfontconfig" \
--enable-gnutls \
&& make -j$(nproc) && \
make install && \
cd .. && rm -rf ffmpeg
# Add /usr/local/bin to PATH (if not already included)
ENV PATH="/usr/local/bin:${PATH}"
# Copy fonts into the custom fonts directory
COPY ./fonts /usr/share/fonts/custom
# Rebuild the font cache so that fontconfig can see the custom fonts
RUN fc-cache -f -v
# Set work directory
WORKDIR /app
# Set environment variable for Whisper cache
ENV WHISPER_CACHE_DIR="/app/whisper_cache"
# Create cache directory (no need for chown here yet)
RUN mkdir -p ${WHISPER_CACHE_DIR}
# Copy the requirements file first to optimize caching
COPY requirements.txt .
# Install Python dependencies, upgrade pip
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
pip install openai-whisper && \
pip install playwright && \
pip install jsonschema
# Create the appuser
RUN useradd -m appuser
# Give appuser ownership of the /app directory (including whisper_cache)
RUN chown appuser:appuser /app
# Important: Switch to the appuser before downloading the model
USER appuser
RUN python -c "import os; print(os.environ.get('WHISPER_CACHE_DIR')); import whisper; whisper.load_model('base')"
# Install Playwright Chromium browser as appuser
RUN playwright install chromium
# Copy the rest of the application code
COPY . .
# Expose the port the app runs on
EXPOSE 8080
# Set environment variables
ENV PYTHONUNBUFFERED=1
RUN echo '#!/bin/bash\n\
gunicorn --bind 0.0.0.0:8080 \
--workers ${GUNICORN_WORKERS:-2} \
--timeout ${GUNICORN_TIMEOUT:-300} \
--worker-class sync \
--keep-alive 80 \
--config gunicorn.conf.py \
app:app' > /app/run_gunicorn.sh && \
chmod +x /app/run_gunicorn.sh
# Run the shell script
CMD ["/app/run_gunicorn.sh"]
|