We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f735e1 commit 8b51c2cCopy full SHA for 8b51c2c
.github/workflows/container-build.yml
@@ -41,5 +41,4 @@ jobs:
41
push: true
42
tags: ${{ steps.meta.outputs.tags }}
43
labels: ${{ steps.meta.outputs.labels }}
44
- # disable arm build for now, because of https://github.com/nodejs/docker-node/issues/1335
45
- platforms: linux/amd64 #,linux/arm64
+ platforms: linux/amd64,linux/arm64
Dockerfile.ci
@@ -1,7 +1,7 @@
1
FROM docker.io/library/node:18-buster AS builder
2
WORKDIR /src
3
COPY . ./
4
-RUN yarn install && \
+RUN yarn install --frozen-lockfile --network-timeout 100000 && \
5
yarn run build && \
6
# Commit lint CLI packages
7
npm pack @commitlint/cli && \
0 commit comments