From f720a0fca275c8298c347715bd8692dfcdb2dd43 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 16 Mar 2020 09:30:01 -0400 Subject: [PATCH] Fix mangled Dockerfiles --- Dockerfile | 2 +- Dockerfile.arm | 2 +- Dockerfile.arm64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a67c8fae37..a984d564db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG DOTNET_VERSION=3.1 ARG FFMPEG_VERSION=latest FROM node:alpine as web-builder -10.5.1 +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-* \ diff --git a/Dockerfile.arm b/Dockerfile.arm index 8181000a3c..56bab724dc 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -6,7 +6,7 @@ ARG DOTNET_VERSION=3.1 FROM node:alpine as web-builder -10.5.1 +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-* \ diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index 00030e891d..f27c6e58ac 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -6,7 +6,7 @@ ARG DOTNET_VERSION=3.1 FROM node:alpine as web-builder -10.5.1 +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-* \