aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorartiume <siderite@gmail.com>2020-03-17 09:38:22 -0400
committerGitHub <noreply@github.com>2020-03-17 09:38:22 -0400
commit9f49fe2e992db1e8b77a057ff81b94c4a6e74030 (patch)
tree5c5092560d1dfef101b6f73a4a2d5896f662e6da
parentf720a0fca275c8298c347715bd8692dfcdb2dd43 (diff)
Fix Release 10.5.z
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index a984d564d..e161036a2 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