From 9f49fe2e992db1e8b77a057ff81b94c4a6e74030 Mon Sep 17 00:00:00 2001 From: artiume Date: Tue, 17 Mar 2020 09:38:22 -0400 Subject: [PATCH 1/3] Fix Release 10.5.z --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a984d564db..e161036a22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ ARG FFMPEG_VERSION=latest FROM node:alpine as web-builder ARG JELLYFIN_WEB_VERSION=10.5.1 RUN apk add curl git \ - && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ - && cd jellyfin-web-* \ + && git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \ + && cd jellyfin-web \ && yarn install \ && yarn build \ && mv dist /dist From 30d38bd5c680d80fb4b0cdcaf45028580406e74e Mon Sep 17 00:00:00 2001 From: artiume Date: Tue, 17 Mar 2020 10:33:06 -0400 Subject: [PATCH 2/3] Update armhf --- Dockerfile.arm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.arm b/Dockerfile.arm index 56bab724dc..65e92c484b 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -8,8 +8,8 @@ ARG DOTNET_VERSION=3.1 FROM node:alpine as web-builder ARG JELLYFIN_WEB_VERSION=10.5.1 RUN apk add curl git \ - && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ - && cd jellyfin-web-* \ + && git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \ + && cd jellyfin-web \ && yarn install \ && yarn build \ && mv dist /dist From a234388552b7ca3a6a76d882004187d5fa1208cd Mon Sep 17 00:00:00 2001 From: artiume Date: Tue, 17 Mar 2020 10:34:25 -0400 Subject: [PATCH 3/3] Fix arm64 --- Dockerfile.arm64 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index f27c6e58ac..e5e406818a 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -8,8 +8,8 @@ ARG DOTNET_VERSION=3.1 FROM node:alpine as web-builder ARG JELLYFIN_WEB_VERSION=10.5.1 RUN apk add curl git \ - && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ - && cd jellyfin-web-* \ + && git clone --branch release-10.5.z --single-branch https://github.com/jellyfin/jellyfin-web.git \ + && cd jellyfin-web \ && yarn install \ && yarn build \ && mv dist /dist