diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a60d73..d9520e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index 3792aac..7640e56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["yarn", "start"]