go-vod: update Dockerfile to use jellyfin
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/953/head
parent
9eed70f848
commit
c334c4645d
|
@ -1,5 +1,14 @@
|
||||||
FROM linuxserver/ffmpeg:latest
|
FROM jellyfin/jellyfin:latest as base
|
||||||
|
|
||||||
|
RUN rm -rf /jellyfin && \
|
||||||
|
ln -s /usr/lib/jellyfin-ffmpeg/ffmpeg /usr/local/bin/ffmpeg && \
|
||||||
|
ln -s /usr/lib/jellyfin-ffmpeg/ffprobe /usr/local/bin/ffprobe
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
|
||||||
|
|
||||||
|
COPY --from=base / /
|
||||||
COPY run.sh /go-vod.sh
|
COPY run.sh /go-vod.sh
|
||||||
|
|
||||||
EXPOSE 47788
|
EXPOSE 47788
|
||||||
|
|
Loading…
Reference in New Issue