diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index 84244d68ac5..8c8acac2cec 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -41,5 +41,4 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - # disable arm build for now, because of https://github.com/nodejs/docker-node/issues/1335 - platforms: linux/amd64 #,linux/arm64 + platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile.ci b/Dockerfile.ci index a2c22203a14..12cc2333250 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1,7 +1,7 @@ FROM docker.io/library/node:18-buster AS builder WORKDIR /src COPY . ./ -RUN yarn install && \ +RUN yarn install --frozen-lockfile --network-timeout 100000 && \ yarn run build && \ # Commit lint CLI packages npm pack @commitlint/cli && \