1
0

Lots of attempts at optimization

This commit is contained in:
2025-11-07 15:58:12 -05:00
parent b2c65553a6
commit f59b0de539
3 changed files with 456 additions and 176 deletions

View File

@@ -1,12 +1,24 @@
FROM ghcr.io/mwood77/ws4kp-international:latest
# Install FFmpeg, Chromium, wget, and unzip
# Install FFmpeg, Chromium, wget, unzip, and canvas dependencies
RUN apk add --no-cache \
chromium \
ffmpeg \
font-noto-emoji \
wget \
unzip
unzip \
cairo-dev \
jpeg-dev \
pango-dev \
giflib-dev \
pixman-dev \
pangomm-dev \
libjpeg-turbo-dev \
freetype-dev \
build-base \
g++ \
make \
python3
# Download and extract Weatherscan music
RUN mkdir -p /music && \