Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/5ba93da8b63448a89ae76df15ae982d7db21d272/deployment/Dockerfile.linux.amd64
You should set ROOT_URL correctly, otherwise the web may not work correctly.
FROM debian:10
# Docker build arguments
ARG SOURCE_DIR = /jellyfin
ARG ARTIFACT_DIR = /dist
ARG SDK_VERSION = 5 .0
# Docker run environment
ENV SOURCE_DIR = /jellyfin
ENV ARTIFACT_DIR = /dist
ENV DEB_BUILD_OPTIONS = noddebs
ENV ARCH = amd64
ENV IS_DOCKER = YES
# Prepare Debian build environment
RUN apt-get update \
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/e1c236ec-c392-4eaa-a846-c600c82bb7f6/b13bd8b69f875f87cf83fc6f5457bcdf/dotnet-sdk-5.0.301-linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
# Link to docker-build script
RUN ln -sf ${ SOURCE_DIR } /deployment/build.linux.amd64 /build.sh
VOLUME ${SOURCE_DIR}/
VOLUME ${ARTIFACT_DIR}/
ENTRYPOINT [ "/build.sh" ]