aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm64
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.arm64
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.arm64')
-rw-r--r--Dockerfile.arm644
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index 5d4e86bff..f8ff0612b 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -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