5 lines
196 B
Docker
5 lines
196 B
Docker
FROM linuxserver/jellyfin:10.8.5
|
|
|
|
RUN apt update && apt install -y libcap2-bin \
|
|
&& setcap cap_net_bind_service=+ep $(realpath /usr/bin/jellyfin) \
|
|
&& rm -rf /var/lib/apt/lists/*
|