jellyfin/Dockerfile

19 lines
537 B
Docker
Raw Normal View History

2018-12-10 07:41:43 +01:00
ARG DOTNET_VERSION=2
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
COPY . .
2018-12-12 05:48:41 +01:00
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
&& dotnet publish --configuration release --output /jellyfin
2018-12-10 07:41:43 +01:00
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
COPY --from=builder /jellyfin /jellyfin
RUN apt update \
&& apt install -y ffmpeg gosu
EXPOSE 8096
VOLUME /config /media
ENV PUID=1000 PGID=1000
ENTRYPOINT chown $PUID:$PGID /config /media \
2018-12-12 21:43:52 +01:00
&& gosu $PUID:$PGID dotnet /jellyfin/jellyfin.dll -programdata /config