diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-05-18 16:52:49 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-18 16:52:49 +0300 |
| commit | 5d466974813c7d800147d1be173a467213a0a7b0 (patch) | |
| tree | b5773ef7d6f84b5a71632e96b3a48f108120451a | |
| parent | 989ddbcafdfcbe32bdf16a30ebec9554d6ca548a (diff) | |
| parent | 9cad5980594fce9a765260cae72bbea4615c7529 (diff) | |
Merge pull request #3020 from rigtorp/patch-1
Fix container image build by installing python
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 6e834d4e0..d3fb138a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG DOTNET_VERSION=3.1 FROM node:alpine as web-builder ARG JELLYFIN_WEB_VERSION=master -RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm \ +RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python \ && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ && cd jellyfin-web-* \ && yarn install \ |
