We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6afb50e commit 3917b6aCopy full SHA for 3917b6a
Dockerfile
@@ -36,7 +36,8 @@ RUN echo $CONTAINER_TIMEZONE && arch && uname &&\
36
ruby-dev && gem i fpm -f && fpm --version &&\
37
curl -fsSL https://deb.nodesource.com/setup_24.x | bash &&\
38
apt-get install -y nodejs &&\
39
- npm install -g npm@11.x
+ npm install -g npm@'<11.12.0'
40
+# https://github.com/npm/cli/issues/9133
41
42
# wget libreadline-dev
43
# libc6 xdg-utils libatspi2.0-0 libuuid1 libsecret-1-0 libappindicator3-1
@@ -108,7 +109,10 @@ USER notroot
108
109
110
ARG BUST_CACHE
111
RUN cd /THORIUM/ &&\
- npm i
112
+ npm install --ignore-scripts --foreground-scripts &&\
113
+ cd node_modules/electron &&\
114
+ npm run postinstall &&\
115
+ cd -
116
117
118
0 commit comments