aboutsummaryrefslogtreecommitdiff
path: root/deployment/Dockerfile.linux.arm64
diff options
context:
space:
mode:
authorMark Cilia Vincenti <markciliavincenti@gmail.com>2024-01-27 21:31:12 +0100
committerGitHub <noreply@github.com>2024-01-27 21:31:12 +0100
commit3fa86a45595c604a0211ba9ffbc4c7f78f9de881 (patch)
tree006a774c8d2464b53f3f6efc26c9549e4ab7d5ce /deployment/Dockerfile.linux.arm64
parent179965e7749794513be0b832e9d8fb31444e9779 (diff)
parent054f42332d8e0c45fb899eeaef982aa0fd549397 (diff)
Merge branch 'jellyfin:master' into AsyncKeyedLock-migration
Diffstat (limited to 'deployment/Dockerfile.linux.arm64')
-rw-r--r--deployment/Dockerfile.linux.arm6413
1 files changed, 10 insertions, 3 deletions
diff --git a/deployment/Dockerfile.linux.arm64 b/deployment/Dockerfile.linux.arm64
index c9692c440..aba33c8b2 100644
--- a/deployment/Dockerfile.linux.arm64
+++ b/deployment/Dockerfile.linux.arm64
@@ -1,7 +1,11 @@
-FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim
+ARG DOTNET_VERSION=8.0
+
+FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-bookworm-slim
+
# Docker build arguments
ARG SOURCE_DIR=/jellyfin
ARG ARTIFACT_DIR=/dist
+
# Docker run environment
ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
@@ -11,10 +15,13 @@ ENV IS_DOCKER=YES
# Prepare Debian build environment
RUN apt-get update -yqq \
- && apt-get install -yqq --no-install-recommends \
+ && apt-get install --no-install-recommends -yqq \
debhelper gnupg devscripts unzip \
mmv libcurl4-openssl-dev libfontconfig1-dev \
- libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0
+ libfreetype6-dev libssl-dev libssl3 liblttng-ust1 \
+ && apt-get clean autoclean -yqq \
+ && apt-get autoremove -yqq \
+ && rm -rf /var/lib/apt/lists/*
# Link to docker-build script
RUN ln -sf ${SOURCE_DIR}/deployment/build.linux.arm64 /build.sh