ea732b62d8
DinD overlay-on-overlay throttles dotnet child container to ~11s CPU/3h wall time. Solution: dotnet restore+publish run on native runner FS (~10min), then Dockerfile.runtime just COPYs the pre-built publish-output/ directory. This brings build time from 3h+ (stuck) to ~10-15 minutes total.
37 lines
1.0 KiB
Docker
37 lines
1.0 KiB
Docker
# syntax=docker/dockerfile:1
|
|
# Runtime-only image — the .NET publish step runs on the CI host (runner),
|
|
# not inside this Dockerfile. This avoids DinD overlay-on-overlay I/O throttling
|
|
# which makes `dotnet publish` inside Docker-in-Docker prohibitively slow on k3s.
|
|
|
|
FROM --platform=linux/amd64 mcr.microsoft.com/dotnet/aspnet:10.0
|
|
|
|
# Install FFmpeg and native dependencies required by SkiaSharp and fontconfig.
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
fontconfig \
|
|
libfontconfig1 \
|
|
libfreetype6 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /jellyfin
|
|
|
|
# Copy the pre-built publish output produced by `dotnet publish` on the CI host.
|
|
COPY publish-output/ .
|
|
|
|
# Jellyfin default ports
|
|
EXPOSE 8096
|
|
EXPOSE 8920
|
|
|
|
# Data / config volumes
|
|
VOLUME ["/config", "/cache", "/media"]
|
|
|
|
ENV JELLYFIN_DATA_DIR=/config \
|
|
JELLYFIN_CACHE_DIR=/cache \
|
|
JELLYFIN_LOG_DIR=/config/log \
|
|
JELLYFIN_CONFIG_DIR=/config
|
|
|
|
ENTRYPOINT ["./jellyfin", \
|
|
"--datadir", "/config", \
|
|
"--cachedir", "/cache"]
|