aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.aarch64
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.aarch64')
-rw-r--r--Dockerfile.aarch6417
1 files changed, 0 insertions, 17 deletions
diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64
deleted file mode 100644
index da4acc8412..0000000000
--- a/Dockerfile.aarch64
+++ /dev/null
@@ -1,17 +0,0 @@
-ARG DOTNET_VERSION=3.0
-
-FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
-WORKDIR /repo
-COPY . .
-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
-
-FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
-COPY --from=builder /jellyfin /jellyfin
-EXPOSE 8096
-RUN apt update \
- && apt install -y ffmpeg
-VOLUME /config /media
-ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config