aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2018-12-20 17:51:05 -0500
committerGitHub <noreply@github.com>2018-12-20 17:51:05 -0500
commit7fd7d063b43f1ba52991218ae0bcdc729ad7a169 (patch)
tree330174ff2739655b53c8c45180700962cbedf61b
parent0fa52f417781b5e418f6027c031246936395d406 (diff)
parentf50b22aac443614af48500bd3f7facd4b1c16602 (diff)
Merge pull request #230 from nvllsvm/barfy_banana_chips
Add aarch64 image
-rw-r--r--Dockerfile.aarch6417
1 files changed, 17 insertions, 0 deletions
diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64
new file mode 100644
index 000000000..da4acc841
--- /dev/null
+++ b/Dockerfile.aarch64
@@ -0,0 +1,17 @@
+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