File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ WORKDIR /app
1010COPY --from=build /app .
1111COPY ./Scripts/install-dotnet8.sh .
1212RUN bash install-dotnet8.sh
13- RUN python3 -m pip install --force-reinstall --break-system-packages git+https://github.com/yt-dlp/yt-dlp.git@release
13+ RUN python3 -m pip install --force-reinstall --break-system-packages "yt-dlp[default] @ git+https://github.com/yt-dlp/yt-dlp.git@release"
1414ADD https://deno.land/install.sh install-deno.sh
1515RUN apt-get update && apt-get install --no-install-recommends -y unzip
1616RUN bash install-deno.sh -y
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public YtDlp(EnvironmentConfig config, ILogger<YtDlp> logger)
1111 {
1212 var updateStartInfo = new ProcessStartInfo ( "python3" )
1313 {
14- Arguments = $ "-m pip install --force-reinstall --break-system-packages git+https://github.com/yt-dlp/yt-dlp.git@{ config . YtDlpUpdateBranch } ",
14+ Arguments = $ "-m pip install --force-reinstall --break-system-packages \" yt-dlp[default] @ git+https://github.com/yt-dlp/yt-dlp.git@{ config . YtDlpUpdateBranch } \" ",
1515 RedirectStandardError = true ,
1616 RedirectStandardOutput = true
1717 } ;
You can’t perform that action at this time.
0 commit comments