Skip to content

Commit 8b51c2c

Browse files
committed
feat(container): add arm64 build
fixes conventional-changelog#3926
1 parent 1f735e1 commit 8b51c2c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/container-build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@ jobs:
4141
push: true
4242
tags: ${{ steps.meta.outputs.tags }}
4343
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
44+
platforms: linux/amd64,linux/arm64

Dockerfile.ci

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM docker.io/library/node:18-buster AS builder
22
WORKDIR /src
33
COPY . ./
4-
RUN yarn install && \
4+
RUN yarn install --frozen-lockfile --network-timeout 100000 && \
55
yarn run build && \
66
# Commit lint CLI packages
77
npm pack @commitlint/cli && \

0 commit comments

Comments
 (0)