2019-01-22 03:47:51 +00:00
|
|
|
ARG DOTNET_VERSION=2.2
|
2018-12-20 06:15:11 +00:00
|
|
|
|
2019-01-22 03:47:51 +00:00
|
|
|
|
|
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk-stretch-arm32v7 as builder
|
2018-12-20 06:15:11 +00:00
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
2019-01-12 15:34:13 +00:00
|
|
|
#TODO Remove or update the sed line when we update dotnet version.
|
2018-12-20 06:15:11 +00:00
|
|
|
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
|
2019-01-22 03:47:51 +00:00
|
|
|
&& dotnet clean -maxcpucount:1 \
|
2019-01-13 20:30:30 +00:00
|
|
|
&& dotnet publish \
|
2019-01-22 03:47:51 +00:00
|
|
|
-maxcpucount:1 \
|
2019-01-13 20:30:30 +00:00
|
|
|
--configuration release \
|
2019-01-13 20:30:54 +00:00
|
|
|
--output /jellyfin \
|
|
|
|
Jellyfin.Server
|
2018-12-20 06:15:11 +00:00
|
|
|
|
2019-01-22 03:47:51 +00:00
|
|
|
|
|
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime-stretch-slim-arm32v7
|
2018-12-20 06:15:11 +00:00
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
|
|
|
EXPOSE 8096
|
2019-01-12 02:04:36 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y ffmpeg
|
2018-12-20 06:15:11 +00:00
|
|
|
VOLUME /config /media
|
|
|
|
ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config
|