Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Try fix buildx timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter committed Jul 28, 2023
1 parent 9b39d2f commit 375c35e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ jobs:
with:
push: true
tags: ghcr.io/kkrt-labs/kakacet/frontend:latest
platforms: linux/amd64
# platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ WORKDIR /app

COPY package*.json ./
RUN yarn install
RUN yarn config set registry https://registry.npmjs.org/
RUN yarn config set network-timeout 1200000

COPY . .
RUN yarn build

EXPOSE 3000

CMD ["yarn", "start"]
CMD ["yarn", "start"]

0 comments on commit 375c35e

Please sign in to comment.