From 8acfc264fca7f2b35fa6c24ce7ff0628c7f01ade Mon Sep 17 00:00:00 2001 From: artiume Date: Tue, 11 Feb 2020 10:29:26 -0500 Subject: [PATCH] Update dockerfile to install git for new dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/jellyfin/jellyfin-web/pull/735 I had to install git to get it to build ✌️ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0bccd9d646..1029a4cee1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG FFMPEG_VERSION=latest FROM node:alpine as web-builder ARG JELLYFIN_WEB_VERSION=master -RUN apk add curl \ +RUN apk add curl git \ && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ && cd jellyfin-web-* \ && yarn install \