Merge pull request #1882 from bvandevliet/fix/include-yt-dlp-in-docker-image

Added yt-dlp package to docker image.
This commit is contained in:
Kayvan Sylvan
2025-12-18 10:34:54 -08:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
### PR [#1882](https://github.com/danielmiessler/Fabric/pull/1882) by [bvandevliet](https://github.com/bvandevliet): Added yt-dlp package to docker image
- Added yt-dlp package to docker image.

View File

@@ -18,7 +18,7 @@ FROM alpine:latest
LABEL org.opencontainers.image.description="A Docker image for running the Fabric CLI. See https://github.com/danielmiessler/Fabric/tree/main/scripts/docker for details."
RUN apk add --no-cache ca-certificates \
RUN apk add --no-cache ca-certificates yt-dlp \
&& mkdir -p /root/.config/fabric
COPY --from=builder /fabric /usr/local/bin/fabric