jellyfin/Dockerfile.arm

24 lines
638 B
Docker
Raw Normal View History

2019-01-21 23:17:56 -05:00
ARG DOTNET_VERSION=3.0
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk-stretch-arm32v7 as builder
WORKDIR /repo
COPY . .
2019-01-12 10:34:13 -05:00
#TODO Remove or update the sed line when we update dotnet version.
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean -maxcpucount:1 \
2019-01-13 15:30:30 -05:00
&& dotnet publish \
-maxcpucount:1 \
2019-01-13 15:30:30 -05:00
--configuration release \
2019-01-13 15:30:54 -05:00
--output /jellyfin \
Jellyfin.Server
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime-stretch-slim-arm32v7
COPY --from=builder /jellyfin /jellyfin
EXPOSE 8096
RUN apt-get update \
&& apt-get install -y ffmpeg
VOLUME /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config