Skip to content

Commit

Permalink
[feat] build multiplatform docker images (amd64 + arm64)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x416e746f6e committed Feb 2, 2024
1 parent cdcea54 commit c245230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ WORKDIR /app
COPY . /app

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

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

0 comments on commit c245230

Please sign in to comment.