1
0

Audio crash fixes

This commit is contained in:
2025-11-09 10:32:13 -05:00
parent 428e0cc739
commit 18874dac78
2 changed files with 22 additions and 11 deletions

View File

@@ -22,9 +22,13 @@ RUN apk add --no-cache \
# Download and extract Weatherscan music
RUN mkdir -p /music && \
echo "Downloading Weatherscan music..." && \
wget -O /tmp/weatherscan.zip "https://archive.org/compress/weatherscancompletecollection/formats=OGG%20VORBIS&file=/weatherscancompletecollection.zip" && \
echo "Extracting OGG files..." && \
unzip -j /tmp/weatherscan.zip "*.ogg" -d /music && \
rm /tmp/weatherscan.zip
echo "Music files extracted: $(ls -1 /music/*.ogg | wc -l) files" && \
rm /tmp/weatherscan.zip && \
echo "Weatherscan music setup complete!"
# Set Puppeteer to use installed Chromium
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \