We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 211ffc4 commit fcc0ecdCopy full SHA for fcc0ecd
2 files changed
.github/workflows/docker.yaml
@@ -4,7 +4,7 @@ on:
4
branches:
5
- main
6
tags:
7
- - 'v*.*.*'
+ - "v*.*.*"
8
pull_request:
9
10
@@ -26,6 +26,9 @@ jobs:
26
username: ${{ github.actor }}
27
password: ${{ secrets.GITHUB_TOKEN }}
28
29
+ - name: Set up QEMU
30
+ uses: docker/setup-qemu-action@v3
31
+
32
- name: Docker meta
33
id: meta
34
uses: docker/metadata-action@v5
@@ -38,6 +41,7 @@ jobs:
38
41
- name: Build and push
39
42
uses: docker/build-push-action@v4
40
43
with:
44
+ platforms: linux/amd64,linux/arm64
45
context: .
46
file: libs/tools/src/docker/Dockerfile
47
push: ${{ github.event_name == 'push' }}
libs/tools/src/docker/Dockerfile
@@ -2,6 +2,7 @@ FROM node:lts-bookworm-slim AS builder
2
3
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
+ENV NX_DAEMON="false"
RUN corepack enable
WORKDIR /build
0 commit comments