aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-20 22:41:58 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-20 22:41:58 +0100
commit589958d13f53d6a7153b177d633f173859f1c24d (patch)
tree17c060877ef4475f4dc4789dda6b23b1670944b5 /Dockerfile
parent887e9c2020f0dee71d24a4464df70e620f6cc805 (diff)
Add missing trailing slashes
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8fbfe9baf7..8ffd72dafd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,7 +6,7 @@ ARG JELLYFIN_WEB_VERSION=master
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
+ && yarn install \
&& mv dist /dist
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder