diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-20 11:46:51 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-20 11:46:51 +0100 |
| commit | 887e9c2020f0dee71d24a4464df70e620f6cc805 (patch) | |
| tree | 03eb872ca86732db9342b5cbaa46a43d873ad089 /Dockerfile | |
| parent | 6894602dab70f7b9072fff1fd6d18fd55d1421ec (diff) | |
Remove unnecessary execution of `yarn build:production`
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 982bfc2cb..8fbfe9baf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +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 build:production \ + && yarn install && mv dist /dist FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder |
