Try to fix ARM docker builds
This commit is contained in:
parent
d0800f7661
commit
a24bf4dc65
1 changed files with 3 additions and 1 deletions
|
@ -16,7 +16,9 @@ WORKDIR /app
|
||||||
|
|
||||||
USER peertube
|
USER peertube
|
||||||
|
|
||||||
RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \
|
# Install manually client dependencies to apply our network timeout option
|
||||||
|
RUN cd client && yarn install --pure-lockfile --network-timeout 1200000 && cd ../ \
|
||||||
|
&& yarn install --pure-lockfile --network-timeout 1200000 \
|
||||||
&& npm run build \
|
&& npm run build \
|
||||||
&& rm -r ./node_modules ./client/node_modules ./client/.angular \
|
&& rm -r ./node_modules ./client/node_modules ./client/.angular \
|
||||||
&& yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
|
&& yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
|
||||||
|
|
Loading…
Reference in a new issue