aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm
diff options
context:
space:
mode:
authorAndrew Rabert <ar@nullsum.net>2019-07-31 16:58:36 -0400
committerAndrew Rabert <ar@nullsum.net>2019-08-01 01:03:52 -0400
commit358665d944a8bcf238b57f2fb1583796ed839dd4 (patch)
treebb8a91aa67b6f24909e85a3335142257fb23bf47 /Dockerfile.arm
parentca8e0796d98e89712a85c827314bdcd557e9934b (diff)
Docker - make web version more configurable
This allows for building against jellyfin-web master. Ex. docker build . --build-arg JELLYFIN_WEB_VERSION=master
Diffstat (limited to 'Dockerfile.arm')
-rw-r--r--Dockerfile.arm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm
index dad4da1f1..b0cf7a8a4 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -26,8 +26,8 @@ RUN apt-get update \
&& chmod 777 /cache /config /media
COPY --from=builder /jellyfin /jellyfin
-ARG JELLYFIN_WEB_VERSION=10.3.7
-RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
+ARG JELLYFIN_WEB_VERSION=v10.3.7
+RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
&& rm -rf /jellyfin/jellyfin-web \
&& mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web