aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtiume <siderite@gmail.com>2019-12-16 15:23:43 -0500
committerGitHub <noreply@github.com>2019-12-16 15:23:43 -0500
commitb626508bc8f51e1a6e6ac385dad0cfe4dc6a21b2 (patch)
tree2d9a0922c1c88d9fd8af51a20bc364b7dbfd29f9
parentf3e7c72bacb0c5682064b9cb3492b33a96dcc697 (diff)
Update Dockerfile
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index e7d36316d..2a60bf184 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,8 @@ ARG FFMPEG_VERSION=latest
FROM node:alpine as web-builder
ARG JELLYFIN_WEB_VERSION=master
RUN apk add curl \
- && cd jellyfin-web \
+ && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
+ && cd jellyfin-web-* \
&& yarn install \
&& yarn build \
&& mv dist /dist