diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-03-21 16:26:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-21 16:26:16 +0900 |
| commit | 816b3f5c2e550ace94a69d2bb38cf61fa2f08e09 (patch) | |
| tree | dacf9f0eeeedcc87b37f080e84393667a32a9dc1 | |
| parent | f720a0fca275c8298c347715bd8692dfcdb2dd43 (diff) | |
| parent | a234388552b7ca3a6a76d882004187d5fa1208cd (diff) | |
Merge pull request #2622 from Artiume/patch-5
Fix Release 10.5.z
| -rw-r--r-- | Dockerfile | 4 | ||||
| -rw-r--r-- | Dockerfile.arm | 4 | ||||
| -rw-r--r-- | Dockerfile.arm64 | 4 |
3 files changed, 6 insertions, 6 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 diff --git a/Dockerfile.arm b/Dockerfile.arm index 56bab724d..65e92c484 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 diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index f27c6e58a..e5e406818 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 |
