diff --git a/Dockerfile b/Dockerfile index d1813b7..1173b32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,13 @@ SHELL ["/bin/sh", "-c"] ENV NIX_CONFIG="experimental-features = nix-command flakes" # Install the runtime and build dependencies through Nix instead of apt. +# Note: git is pulled transitively by yt-dlp as git-minimal; adding git +# explicitly causes a file conflict (packinfo.pl) so we omit it here. RUN nix profile install \ github:NixOS/nixpkgs/nixos-unstable#nodejs_22 \ github:NixOS/nixpkgs/nixos-unstable#ffmpeg \ github:NixOS/nixpkgs/nixos-unstable#python3 \ github:NixOS/nixpkgs/nixos-unstable#cacert \ - github:NixOS/nixpkgs/nixos-unstable#git \ github:NixOS/nixpkgs/nixos-unstable#gnumake \ github:NixOS/nixpkgs/nixos-unstable#gcc \ github:NixOS/nixpkgs/nixos-unstable#pkg-config \