aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-02 18:12:24 +0100
committerGitHub <noreply@github.com>2019-03-02 18:12:24 +0100
commitc328417d29300859e5369e78e17ad06306769b4b (patch)
tree8b2d33f3cc2334fe45a736628891cb150cffc12d
parentc4192f9f8b5910e7ecfa0ab4e7bb2204f578a351 (diff)
parent65403747dfc3df0807d7bc53fe090685355bca37 (diff)
Merge pull request #1030 from jellyfin/release-10.2.z
Backmerge for 10.2.2
-rw-r--r--Dockerfile6
-rw-r--r--Dockerfile.arm6
-rw-r--r--Dockerfile.arm646
3 files changed, 18 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index e2d424df78..91a4f5a2d2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,6 +20,12 @@ RUN apt-get update \
&& chmod 777 /cache /config /media
COPY --from=ffmpeg / /
COPY --from=builder /jellyfin /jellyfin
+
+ARG JELLYFIN_WEB_VERSION=10.2.2
+RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
+ && rm -rf /jellyfin/jellyfin-web \
+ && mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
+
EXPOSE 8096
VOLUME /cache /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll \
diff --git a/Dockerfile.arm b/Dockerfile.arm
index d220763a2c..42f0354a32 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -28,6 +28,12 @@ RUN apt-get update \
&& mkdir -p /cache /config /media \
&& chmod 777 /cache /config /media
COPY --from=builder /jellyfin /jellyfin
+
+ARG JELLYFIN_WEB_VERSION=10.2.2
+RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
+ && rm -rf /jellyfin/jellyfin-web \
+ && mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
+
EXPOSE 8096
VOLUME /cache /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll \
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index 243b841e92..d3103d3893 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -29,6 +29,12 @@ RUN apt-get update \
&& mkdir -p /cache /config /media \
&& chmod 777 /cache /config /media
COPY --from=builder /jellyfin /jellyfin
+
+ARG JELLYFIN_WEB_VERSION=10.2.2
+RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
+ && rm -rf /jellyfin/jellyfin-web \
+ && mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web
+
EXPOSE 8096
VOLUME /cache /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll \