mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
287 B
Docker
17 lines
287 B
Docker
ARG BUILDIMAGE=ghcr.io/yt-dlp/manylinux2014_x86_64-shared:latest
|
|
ARG VERIFYIMAGE=alpine:3.22
|
|
|
|
|
|
FROM $BUILDIMAGE AS build
|
|
|
|
WORKDIR /yt-dlp
|
|
COPY build.sh /build.sh
|
|
ENTRYPOINT ["/build.sh"]
|
|
|
|
|
|
FROM $VERIFYIMAGE AS verify
|
|
|
|
WORKDIR /testing
|
|
COPY verify.sh /verify.sh
|
|
ENTRYPOINT ["/verify.sh"]
|