diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:24:43 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:24:43 +0100 |
| commit | d7b7be395b76c7fcc49d3baffeb59d51a9b36378 (patch) | |
| tree | e1306ae96c5b37aa8fed475dfbaffd502bec9ecf /Dockerfile.arm64v8 | |
| parent | 672013c23d10d79b4d87b509ebf7b50c29870af7 (diff) | |
Moved ARM dockerfiles back to root.
Diffstat (limited to 'Dockerfile.arm64v8')
| -rw-r--r-- | Dockerfile.arm64v8 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 new file mode 100644 index 000000000..932b50391 --- /dev/null +++ b/Dockerfile.arm64v8 @@ -0,0 +1,18 @@ +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-stretch-slim-arm64v8 +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 |
