get latest version of yt-dlp
All checks were successful
Push image to registry / build-image (push) Successful in 7m6s

This commit is contained in:
2025-06-03 20:04:40 +02:00
parent 02bd6eae82
commit e6ff59ff18

View File

@ -54,12 +54,15 @@ RUN apk update && apk add --no-cache \
openssl \
linux-headers \
supervisor \
yt-dlp \
&& rm -rf /tmp/* /var/cache/apk/*
RUN docker-php-ext-configure zip && docker-php-ext-install zip
RUN docker-php-ext-install gd pdo pdo_mysql zip
# Install latest version of the linux binary of yt-dlp into /bin/yt-dlp
# Get the file from https://github.com/yt-dlp/yt-dlp-master-builds/releases/latest/download/yt-dlp
RUN curl -L https://github.com/yt-dlp/yt-dlp-master-builds/releases/latest/download/yt-dlp -o /bin/yt-dlp \
&& chmod +x /bin/yt-dlp
# Get latest Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer