diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-08-03 15:53:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-03 15:53:07 -0400 |
| commit | 0f9fd380535e141ef92079af75c8708912490bc2 (patch) | |
| tree | 51779631c6b50f4a030bc1725a2811a995dfecb3 | |
| parent | 20f0a8a1c41212053f3cde2965754d3fdb26d46f (diff) | |
| parent | 358665d944a8bcf238b57f2fb1583796ed839dd4 (diff) | |
Merge pull request #1593 from nvllsvm/docker_web_master
Docker - make web version more configurable
| -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 057d4b041..1644a8967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,8 +21,8 @@ RUN apt-get update \ COPY --from=ffmpeg / / 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 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 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 |
