Skip to content

Commit c245230

Browse files
committed
[feat] build multiplatform docker images (amd64 + arm64)
see also: nodejs/docker-node#1335
1 parent cdcea54 commit c245230

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ WORKDIR /app
88
COPY . /app
99

1010
# Install app dependencies and build the application
11-
RUN cd core && rm -f ./src/output/wallets.json && yarn install && yarn script.createWallets && yarn build && cd ..
12-
RUN cd cli && yarn install && yarn build && cd ..
11+
RUN cd core && rm -f ./src/output/wallets.json && yarn install --network-timeout 1000000 && yarn script.createWallets && yarn build && cd ..
12+
RUN cd cli && yarn install --network-timeout 1000000 && yarn build && cd ..
1313

1414
# Use an official Node runtime as a parent image for the runtime stage
1515
FROM node:16 as runtime

0 commit comments

Comments
 (0)