c06598635f
Adds the /cache volume and set it to writeable by all. This allows for those using jellyfin to continue using it without modifying their config. However, retaining cache will require one to mount the /cache volume. Also make the /config and /media dirs 777 by default. No permissions on mounted volumes will be changed.
28 lines
825 B
Docker
28 lines
825 B
Docker
ARG DOTNET_VERSION=2
|
|
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
|
|
WORKDIR /repo
|
|
COPY . .
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
RUN dotnet publish \
|
|
--configuration release \
|
|
--output /jellyfin \
|
|
Jellyfin.Server
|
|
|
|
FROM jrottenberg/ffmpeg:4.0-vaapi as ffmpeg
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
|
|
# libfontconfig1 is required for Skia
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y \
|
|
libfontconfig1 \
|
|
&& apt-get clean autoclean \
|
|
&& apt-get autoremove \
|
|
&& rm -rf /var/lib/{apt,dpkg,cache,log} \
|
|
&& mkdir -p /cache /config /media \
|
|
&& chmod 777 /cache /config /media
|
|
COPY --from=ffmpeg / /
|
|
COPY --from=builder /jellyfin /jellyfin
|
|
EXPOSE 8096
|
|
VOLUME /cache /config /media
|
|
ENTRYPOINT dotnet /jellyfin/jellyfin.dll --datadir /config --cachedir /cache
|