diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:43:12 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:43:12 +0100 |
| commit | 9b224d7080d0dce986937229e9ff0c8923f7ce95 (patch) | |
| tree | dab3de4f51e8f09af50dcfd2e805156465dc2f1b /Dockerfile.arm | |
| parent | ca320ba7acbd1018eba7816fac9271172e91ed1d (diff) | |
Merged the two ARM platforms. To be split apart when a binary ffmpeg is required.
Diffstat (limited to 'Dockerfile.arm')
| -rw-r--r-- | Dockerfile.arm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm new file mode 100644 index 000000000..a0b3d0e1d --- /dev/null +++ b/Dockerfile.arm @@ -0,0 +1,21 @@ +ARG DOTNET_VERSION=3.0 + +FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder +WORKDIR /repo +COPY . . +#TODO Remove or update the sed line when we update dotnet version. +RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \ + && find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \; \ + && dotnet clean \ + && dotnet publish \ + --configuration release \ + --output /jellyfin \ + Jellyfin.Server + +FROM microsoft/dotnet:${DOTNET_VERSION}-runtime +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 |
