aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorartiume <siderite@gmail.com>2020-02-11 10:29:26 -0500
committerGitHub <noreply@github.com>2020-02-11 10:29:26 -0500
commit8acfc264fca7f2b35fa6c24ce7ff0628c7f01ade (patch)
tree6dd5c9554952cbd91c2a3c1da6fcdc33fe8e9393
parent77428d338db09c4f3df3121281d952851a8a89ec (diff)
Update dockerfile to install git for new dependency
https://github.com/jellyfin/jellyfin-web/pull/735 I had to install git to get it to build ✌️
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 0bccd9d64..1029a4cee 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 \