aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSparky <sparky@possumlodge.me>2019-01-18 10:26:02 -0500
committerSparky <sparky@possumlodge.me>2019-01-18 10:26:02 -0500
commitd00e43735f8f8f75f5b0901a380d8bbf719c11a9 (patch)
treec12cd21823ae984520001e0d64445a430045c969
parent440350a3f649b648f43a1d531153cc2c68edbee5 (diff)
Really slim down Docker container
#606 didn't actually run the new commands due to the comments position. This fixes the comment location.
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index f21249e54..b014afcd2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,9 +26,11 @@ COPY --from=builder /jellyfin /jellyfin
COPY --from=ffmpeg /ffmpeg-bin/* /usr/bin/
EXPOSE 8096
VOLUME /config /media
+
+# libfontconfig1 is required for Skia
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \
- libfontconfig1 # Required for Skia \
+ libfontconfig1 \
&& apt-get clean autoclean \
&& apt-get autoremove \
&& rm -rf /var/lib/{apt,dpkg,cache,log}