Ooops forgot to commit
This commit is contained in:
@@ -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* ./
|
||||
|
||||
Reference in New Issue
Block a user