Browse Source

include streamlink in amd64 docker image (#2611)

* include streamlink in docker images

* tweak command
pull/2601/head
Jason Dove 2 months ago committed by GitHub
parent
commit
d709cc9f21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      docker/Dockerfile

5
docker/Dockerfile

@ -2,6 +2,11 @@ FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble-amd64 AS dotnet-runtime @@ -2,6 +2,11 @@ FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble-amd64 AS dotnet-runtime
FROM --platform=linux/amd64 ghcr.io/ersatztv/ersatztv-ffmpeg:7.1.1 AS runtime-base
COPY --from=dotnet-runtime /usr/share/dotnet /usr/share/dotnet
RUN apt-get update && \
apt-get install -y --no-install-recommends python3 python3-pip && \
python3 -m pip install --target=/app/pythonlibs --no-cache-dir streamlink && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*
# https://hub.docker.com/_/microsoft-dotnet
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble-amd64 AS build

Loading…
Cancel
Save