mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2024-11-16 17:00:14 +00:00
7 lines
217 B
Docker
7 lines
217 B
Docker
|
FROM python:3.10.9-slim-bullseye
|
||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
git
|
||
|
RUN git clone https://github.com/tubearchivist/jellyfin
|
||
|
WORKDIR jellyfin
|
||
|
RUN pip install -r requirements.txt
|