jellyfin/Dockerfile
Jonas Rosland 79bb5bd579 Add initial docker setup
Signed-off-by: Jonas Rosland <jonas.rosland@gmail.com>
2023-06-29 15:50:56 -04:00

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