mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2025-02-22 16:00:15 +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
|