File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 62
62
id : push
63
63
uses : meta-introspector/build-push-action@v5.0.0
64
64
with :
65
- platforms : linux/amd64,linux/ arm64
65
+ platforms : linux/arm64
66
66
context : .
67
67
push : true
68
68
tags : ${{ steps.meta.outputs.tags }}
Original file line number Diff line number Diff line change 1
1
# Use a specific Node.js version for better reproducibility
2
2
# FROM node:23.3.0-slim AS builder
3
- FROM node:23.6.0 AS builder
3
+ # note this architecture is listed twice in this file!
4
+ FROM amd64/node:23-bookworm-slim AS builder
4
5
5
6
# Install pnpm globally and install necessary build tools
6
7
RUN npm install -g pnpm@9.4.0 && \
@@ -30,7 +31,8 @@ RUN pnpm install \
30
31
&& pnpm prune --prod
31
32
32
33
# Create a new stage for the final image
33
- FROM node:23.3.0-slim
34
+ # FROM node:23.3.0-slim
35
+ FROM amd64/node:23-bookworm-slim
34
36
35
37
# Install runtime dependencies if needed
36
38
RUN npm install -g pnpm@9.4.0 && \
You can’t perform that action at this time.
0 commit comments