File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747 platforms : linux/amd64,linux/arm64
4848 tags : ${{ steps.meta_web.outputs.tags }}
4949 labels : ${{ steps.meta_web.outputs.labels }}
50+ build-args : |
51+ BUILDPLATFORM=linux/amd64
5052
5153 build-daemon :
5254 runs-on : ubuntu-latest
9698 tags : ${{ steps.meta_daemon.outputs.tags }}
9799 labels : ${{ steps.meta_daemon.outputs.labels }}
98100 build-args : |
101+ BUILDPLATFORM=linux/amd64
99102 JAVA_RUNTIME=${{ matrix.java_version }}
Original file line number Diff line number Diff line change 11ARG EMBEDDED_JAVA_VERSION=21
2+ ARG BUILDPLATFORM=linux/amd64
23
3- FROM --platform=amd64 node:lts AS builder
4+ FROM --platform=${BUILDPLATFORM} node:lts AS builder
45
56WORKDIR /src
67COPY . /src
Original file line number Diff line number Diff line change 1- FROM --platform=amd64 node:lts AS builder
1+ ARG BUILDPLATFORM=linux/amd64
2+ FROM --platform=${BUILDPLATFORM} node:lts AS builder
23
34WORKDIR /src
45COPY . /src
You can’t perform that action at this time.
0 commit comments