1
0

Ooops forgot to commit

This commit is contained in:
2025-11-25 12:20:00 -05:00
parent 4964211254
commit 5209e8cf26
7 changed files with 407 additions and 67 deletions

View File

@@ -56,6 +56,14 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
WS4KP_PORT=8080 \
MUSIC_PATH=/music
# Copy all Star fonts and remove spaces from filenames for FFmpeg
RUN mkdir -p /fonts && \
find / -name "Star*.ttf" -type f 2>/dev/null | while read font; do \
newname=$(basename "$font" | tr -d ' '); \
cp "$font" "/fonts/$newname"; \
done && \
echo "✓ Fonts available:" && ls -1 /fonts/ || echo "⚠ No fonts found"
# Install our streaming app
WORKDIR /streaming-app
COPY package.json yarn.lock* ./