Skip to content

Commit 750bfd0

Browse files
author
mike dupont
committed
trying again
1 parent 4d2be64 commit 750bfd0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
id: push
6363
uses: meta-introspector/build-push-action@v5.0.0
6464
with:
65-
platforms: linux/amd64,linux/arm64
65+
platforms: linux/arm64
6666
context: .
6767
push: true
6868
tags: ${{ steps.meta.outputs.tags }}

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Use a specific Node.js version for better reproducibility
22
#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
45

56
# Install pnpm globally and install necessary build tools
67
RUN npm install -g pnpm@9.4.0 && \
@@ -30,7 +31,8 @@ RUN pnpm install \
3031
&& pnpm prune --prod
3132

3233
# 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
3436

3537
# Install runtime dependencies if needed
3638
RUN npm install -g pnpm@9.4.0 && \

0 commit comments

Comments
 (0)