aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-02-12 14:24:19 +0300
committerGitHub <noreply@github.com>2020-02-12 14:24:19 +0300
commite241f83ff12aa2231443b78d39d1db2646aebdf9 (patch)
tree82dc98bb43d61e57da6b61e1d7abfbcedcbfd6fb /Dockerfile
parent684568e6d2ef163c91fa5faf26600c16acf4b0b8 (diff)
parent8fb86cb5ffc84abd974c48edbd68b6c7ee2841ad (diff)
Merge pull request #2398 from Artiume/patch-1
Update dockerfile to install git for new dependency
Diffstat (limited to 'Dockerfile')
-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 \