aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm64
diff options
context:
space:
mode:
authorBill Thornton <billt2006@gmail.com>2021-05-05 00:58:12 -0400
committerBill Thornton <billt2006@gmail.com>2021-05-05 00:58:12 -0400
commit260782349c7a800a576f0a7d3ff2b2ccc205013a (patch)
treeef59d4248cf47734339b10a1b35f7ca9a24ec02d /Dockerfile.arm64
parent52db719f506d36ddded8ef32e6d8f146e508cc15 (diff)
Fix web build in dockerfiles
Diffstat (limited to 'Dockerfile.arm64')
-rw-r--r--Dockerfile.arm646
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index e95999f2a..c9f19c5a3 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -5,12 +5,12 @@
ARG DOTNET_VERSION=5.0
-FROM node:alpine as web-builder
+FROM node:lts-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 python \
+RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python3 \
&& curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
&& cd jellyfin-web-* \
- && npm ci --no-audit \
+ && npm ci --no-audit --unsafe-perm \
&& mv dist /dist