mirror of
https://github.com/fergalmoran/dockerfiless.git
synced 2025-12-22 09:18:58 +00:00
12 lines
300 B
Docker
12 lines
300 B
Docker
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS runtime
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install \
|
|
python \
|
|
ffmpeg \
|
|
curl && \
|
|
curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl && \
|
|
chmod a+rx /usr/local/bin/youtube-dl && \
|
|
youtube-dl -U
|
|
|